Skip to content

Commit d84d337

Browse files
committed
Production and Development groups in Gemfile
1 parent 5860425 commit d84d337

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

Gemfile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source "http://rubygems.org"
2+
23
gem "data_objects"
34
gem "datamapper"
45
gem "dm-aggregates"
@@ -13,14 +14,18 @@ gem "dm-serializer"
1314
gem "dm-timestamps"
1415
gem "dm-types"
1516
gem "dm-validations"
16-
# production
17-
gem "do_mysql"
18-
# development
19-
gem "do_sqlite3"
2017
gem "extlib"
2118
gem "json"
2219
gem "rack-cache"
2320
gem "rack-contrib"
2421
gem "sinatra"
2522
gem "systemu"
2623
gem "unicorn"
24+
25+
group :production do
26+
gem "do_mysql"
27+
end
28+
29+
group :development do
30+
gem "do_sqlite3"
31+
end

0 commit comments

Comments
 (0)