-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
48 lines (37 loc) · 1.2 KB
/
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
38
39
40
41
42
43
44
45
46
47
source 'http://rubygems.org'
gem 'rails', '>= 3.0.0'
gem 'therubyracer'
gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0.rc"
gem 'coffee-rails', "~> 3.1.0.rc"
gem 'uglifier'
end
gem 'rails3-generators'
gem "bson_ext"
gem "haml"
gem "haml-rails"
gem "jquery-rails"
gem "sprockets"
gem "on_the_spot" # use latest gem
#gem "on_the_spot", ;git => "git://github.com/nathanvda/on_the_spot.git" # use gem from github
#gem "on_the_spot", ">= 0.0.0.beta1", :path => "../on_the_spot" # for local testing
# we need this here, see http://blog.davidchelimsky.net/2010/07/11/rspec-rails-2-generators-and-rake-tasks/
group :development, :test do
gem "rspec-rails", ">= 2.0.0"
gem "version"
end
# test-environment gems
group :test, :spec, :cucumber do
gem "factory_girl_rails"
gem "rspec", ">= 2.0.0"
gem "remarkable", ">=4.0.0.alpha2"
gem "remarkable_activemodel", ">=4.0.0.alpha2"
gem "remarkable_activerecord", ">=4.0.0.alpha2"
gem "capybara"
gem "cucumber"
gem "database_cleaner"
gem "cucumber-rails"
end