forked from rubyforgood/human-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (66 loc) · 2.02 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
70
71
72
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem "bugsnag"
gem 'chartkick', '~> 2.2'
gem 'cocoon', '~> 1.2' # For nested resources in forms
gem 'coffee-rails', '~> 4.2'
gem 'devise', '~> 4.3'
gem 'devise_invitable'
gem 'dotenv-rails', '~> 2.2'
gem 'foundation-rails', '~> 6.3.0'
gem 'foundation_rails_helper', '>= 3.0.0.rc2', '< 4.0'
gem 'groupdate', '~> 3.2'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails', '~> 4.3'
gem 'jquery-ui-rails', '~> 6.0'
gem 'newrelic_rpm'
gem 'paperclip', '= 5.1.0'
gem 'pg', '~> 0.2'
gem 'prawn-rails', '~> 1.0' # For PDF generation
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.1.1'
gem 'react-rails'
gem 'sass-rails', '~> 5.0'
gem 'simple_form', '~> 3.4'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', '~> 0.12', platforms: :ruby
gem 'turbolinks', '~> 5'
gem 'yajl-ruby'
gem 'toastr-rails'
group :development, :test do
gem 'awesome_print', '~> 1.7'
gem 'byebug', '~> 9.0', platform: :mri
gem 'guard-rspec', '~> 4.7'
gem 'pry', '~> 0.10'
gem 'rspec-rails', '~> 3.5'
gem 'terminal-notifier-guard'
gem 'terminal-notifier'
end
group :development do
gem 'annotate', '~> 2.6'
gem 'binding_of_caller', '~> 0.7'
gem 'better_errors', '~> 2.1'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-rbenv', '~> 2.1'
gem 'capistrano-bundler', '~> 1.2'
gem 'capistrano3-puma', '~> 3.1'
gem 'capistrano-rails-console', require: false
gem 'listen', '~> 3.0.5'
gem 'spring', '~> 2.0'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara', '~> 2.13'
gem 'database_cleaner', '~> 1.5'
gem 'factory_bot_rails', '~> 4.8'
gem 'launchy', '~> 2.4'
gem 'phantomjs', '~> 2.1', require: "phantomjs/poltergeist"
gem 'poltergeist', '~> 1.15'
gem 'rails-controller-testing', '~> 1.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1.2', platforms: [:mingw, :mswin, :x64_mingw, :jruby]