Skip to content

Commit

Permalink
add a Gemfile and Gemfile.lock to make it easier to work on the proje…
Browse files Browse the repository at this point in the history
…ct with a modern Ruby setup
  • Loading branch information
triskweline committed Jun 19, 2013
1 parent 241140b commit fd70e9e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
source 'https://rubygems.org'

gem 'rake', '=0.8.7'
gem 'rdoc', '=2.5.11'
gem 'mocha', '=0.9.7'
gem 'RedCloth', '=4.2.3'
gem 'sqlite3', '=1.3.7'
gem 'mysql', '=2.8.1'
gem 'rack', '=1.1.0'
gem 'pg', '=0.9.0'
gem 'nokogiri', '1.3.3'
gem 'libxml-ruby', '=1.1.4'
29 changes: 29 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
GEM
remote: https://rubygems.org/
specs:
RedCloth (4.2.3)
libxml-ruby (1.1.4)
mocha (0.9.7)
rake
mysql (2.8.1)
nokogiri (1.3.3)
pg (0.9.0)
rack (1.1.0)
rake (0.8.7)
rdoc (2.5.11)
sqlite3 (1.3.7)

PLATFORMS
ruby

DEPENDENCIES
RedCloth (= 4.2.3)
libxml-ruby (= 1.1.4)
mocha (= 0.9.7)
mysql (= 2.8.1)
nokogiri (= 1.3.3)
pg (= 0.9.0)
rack (= 1.1.0)
rake (= 0.8.7)
rdoc (= 2.5.11)
sqlite3 (= 1.3.7)

0 comments on commit fd70e9e

Please sign in to comment.