-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
29 lines (25 loc) · 898 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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.3'
gem 'cancan'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'client_side_validations'
gem "devise", ">= 2.1.0.rc"
gem "twitter-bootstrap-rails", ">= 2.0.3"#, :group => :assets
gem 'pg', :group => :production
gem "therubyracer"
gem 'newrelic_rpm'
gem 'simple_form'
gem "rspec-rails", ">= 2.9.0.rc2", :group => [:development, :test]
gem "factory_girl_rails", ">= 2.0.0.rc", :group => [:development, :test]
gem "email_spec", ">= 1.2.1", :group => :test
gem "cucumber-rails", ">= 1.3.0", :require => false, :group => :test
gem "capybara", ">= 1.1.2", :group => :test
gem "database_cleaner", ">= 0.7.1", :group => :test
gem "launchy", ">= 2.0.5", :group => :test
gem 'sqlite3', :group => :development
gem 'simplecov', :require => false, :group => :test