This repository has been archived by the owner on Mar 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (63 loc) · 1.84 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 '2.0.0'
gem 'airbrake', '~> 3.1'
# gem 'ancestry', '~> 2.0'
gem 'bootstrap-sass', github: 'thomas-mcdonald/bootstrap-sass', branch: '3'
gem 'cancan', '~> 1.6'
gem 'coffee-rails', '~> 4.0'
gem 'delayed_job_active_record', '~> 4.0'
gem 'devise', '~> 3.1'
gem 'email_validator', '~> 1.4'
gem 'figaro', '~> 0.7'
gem 'font-awesome-rails', '~> 3.2'
gem 'jquery-rails', '~> 3.0'
gem 'neat', '~> 1.4'
gem 'newrelic_rpm', '~> 3.6'
gem 'rack-timeout', '~> 0.0'
gem 'rails', '4.0.0'
gem 'recipient_interceptor', '~> 0.1'
gem 'rolify', '~> 3.2'
gem 'sass-rails', '~> 4.0'
gem 'serialport', '~> 1.1'
gem 'slim', '~> 2.0'
gem 'sqlite3', '~> 1.3'
# gem 'stripe', '~> 1.7'
gem 'tinymce-rails', '~> 4.0'
gem 'turbolinks', '~> 1.3'
gem 'uglifier', '~> 1.3'
group :development do
gem 'better_errors', '~> 1.0'
gem 'binding_of_caller', platforms: [:mri_19, :mri_20, :rbx]
gem 'guard-bundler', '~> 1.0'
gem 'guard-rails', '~> 0.4'
gem 'guard-rspec', '~> 2.5'
gem 'haml-rails', '~> 0.4'
gem 'haml2slim', '~> 0.4'
gem 'html2haml', '~> 1.0'
gem 'hub', '~> 1.10', require: nil
gem 'quiet_assets', '~> 1.0'
gem 'rb-fchange', '~> 0.0', require: false
gem 'rb-fsevent', '~> 0.9', require: false
gem 'rb-inotify', '~> 0.9', require: false
end
group :development, :test do
gem 'factory_girl_rails', '~> 4.2'
gem 'guard-spork', '~> 1.5'
gem 'guard-rspec', '~> 2.5'
gem 'rspec-rails', '~> 2.14'
gem 'spork-rails', github: 'sporkrb/spork-rails'
end
group :staging, :production do
gem 'rails_12factor', '~> 0.0' # heroku asset pipeline helper
gem 'unicorn', '~> 4.6'
end
group :test do
gem 'capybara', '~> 2.1'
gem 'database_cleaner', '~> 1.0'
gem 'email_spec', '~> 1.5'
gem 'launchy', '~> 2.3'
gem 'shoulda-matchers', '~> 2.4'
gem 'simplecov', '~> 0.7', require: false
gem 'timecop', '~> 0.6'
gem 'webmock', '~> 1.13'
end