-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (55 loc) · 1.11 KB
/
Gemfile
File metadata and controls
64 lines (55 loc) · 1.11 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'capistrano'
gem 'capistrano-ext'
gem 'cancan'
gem 'countries'
gem 'dotenv-rails'
gem 'devise'
gem 'dotenv-rails'
gem 'i18n-country-translations'
gem 'jquery-rails'
gem 'mixpanel-ruby'
gem "nested_form"
gem 'omniauth'
gem 'omniauth-facebook'
gem 'rvm-capistrano'
gem 'slim'
gem 'settingslogic'
gem 'paperclip'
gem 'paranoia'
gem 'paranoia_uniqueness_validator'
gem 'roadie'
gem 'wisper', '~>1.2.0'
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'zurb-foundation', '~> 4.0.0'
end
group :development, :test do
gem 'sqlite3'
end
group :development do
gem 'guard'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'mail_view'
end
group :test do
gem 'cucumber-rails', require: false
gem 'capybara-webkit'
gem 'database_cleaner', require: false
gem 'factory_girl_rails'
gem "launchy"
gem 'simplecov', require: false
end
group :development, :test do
gem 'pry-rails'
gem 'rspec-rails'
end
group :production do
gem 'pg'
end