-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (63 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.11'
gem "mongoid"
gem 'haml-rails'
gem 'pusher'
gem 'thin'
gem "devise"
gem 'sidekiq'
gem 'sinatra', require: nil
gem 'slim', require: nil
gem 'mongoid_rails_migrations'
gem 'rack-cors', :require => 'rack/cors'
gem 'kaminari'
gem 'kiqstand'
gem "active_model_serializers", github: "rails-api/active_model_serializers"
gem "rspec_api_documentation", github: "ooleem/rspec_api_documentation"
gem 'httparty'
gem 'cloudinary'
gem 'american_date'
gem 'ffaker'
gem 'mongoid_token', github: 'samnang/mongoid_token'
gem 'geocoder'
gem 'mongoid_search'
gem 'bitly'
gem "jquery-rails"
gem 'jquery-ui-rails'
gem "awesome_print"
gem "chargify_api_ares"
gem 'newrelic_rpm'
gem 'newrelic_moped'
gem 'mail_view'
gem 'unicorn'
gem 'urbanairship'
gem 'email_validator'
group :production do
gem "airbrake"
end
group :assets do
gem 'therubyracer'
gem 'uglifier'
gem 'sass-rails'
gem 'coffee-rails'
gem 'bootstrap-sass'
end
group :development, :test do
gem "pry"
gem "factory_girl_rails", "~> 4.0"
gem 'heroku'
end
group :test do
gem "rspec-rails"
gem "cucumber-rails", :require => false
gem "database_cleaner"
gem 'fivemat'
gem 'email_spec'
gem 'timecop'
gem 'pusher-fake'
gem 'shoulda-matchers'
#gem 'capybara-screenshot'
#gem "capybara-webkit"
#gem 'poltergeist'
end