forked from jcxplorer/snowfinch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
37 lines (32 loc) · 772 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
source :rubygems
gem "rails", "3.0.6"
gem "devise"
gem "haml"
gem "kisko-compass", :git => "[email protected]:kiskolabs/kisko-compass.git"
gem "simple_form"
gem "mongo"
gem "bson_ext"
gem "snowfinch-collector",
:git => "[email protected]:jcxplorer/snowfinch-collector.git",
:require => "snowfinch/collector"
group :test do
gem "autotest"
gem "autotest-growl", :require => false
gem "capybara"
gem "database_cleaner"
gem "email_spec"
gem "factory_girl_rails", ">= 1.1.beta1"
gem "fuubar"
gem "launchy"
gem "shoulda-matchers", :require => false
gem "simplecov", :require => false
gem "timecop"
end
group :production do
gem "pg"
end
group :development, :test do
gem "rspec-rails"
gem "sqlite3-ruby", :require => "sqlite3"
gem "steak"
end