-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·47 lines (39 loc) · 1020 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
38
39
40
41
42
43
44
45
source 'https://rubygems.org'
gem 'rails', '4.0.0.beta1'
gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails'
gem "omniauth-facebook"
gem "koala"
gem 'devise', :git => "https://github.com/plataformatec/devise.git", :branch => "rails4"
gem 'execjs'
gem 'bundler'
gem 'uservoice-ruby'
gem 'newrelic_rpm'
gem 'stripe'
gem "permanent_records"
gem 'protected_attributes'
gem "jquery-rails"
gem "figaro"
group :production do
gem 'pg'
end
group :development do
gem 'sqlite3'
end
group :test, :development do
gem "factory_girl_rails", :require => false
gem "rspec-rails"
gem "rspec_junit_formatter"
gem "capybara"
gem "guard-rspec"
gem "simplecov"
gem "database_cleaner"
gem "faker"
gem 'therubyracer', :platform => :ruby
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', :git => 'https://github.com/rails/sass-rails.git'
gem 'coffee-rails', :git => 'https://github.com/rails/coffee-rails.git'
gem 'uglifier', '1.0.3'
end