-
Notifications
You must be signed in to change notification settings - Fork 213
/
Gemfile
133 lines (109 loc) · 2.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
source 'https://rubygems.org'
ruby '2.6.5'
gem 'rails', '~> 5.2.4'
gem 'pg', '~> 1.2'
gem 'devise', '~> 4.7'
gem 'devise_invitable', '~> 2.0'
gem 'heroku-api'
gem 'sprockets'
gem 'fullcalendar-rails'
gem 'bootstrap3-datetimepicker-rails'
gem 'momentjs-rails'
gem 'jbuilder'
gem 'puma'
gem 'rack-cors'
gem 'report_intermittent_fails', git: 'https://github.com/tansaku/report_intermittent_fails', branch: 'randomfail-endtoend'
#, git: 'https://github.com/tansaku/report_intermittent_fails'
#, path: '/Users/tansaku/Documents/GitHub/tansaku/report_intermittent_fails/'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# for Heroku deployment - as described in Ap. A of ELLS book
group :development, :test do
gem 'annotate'
gem 'faker', '~> 2.11'
gem 'timecop'
gem 'database_cleaner', '1.8.3'
gem 'launchy'
gem 'simplecov', require: false
gem 'sinatra'
gem 'rspec-rails'
gem 'rspec-activemodel-mocks'
gem 'execjs'
gem 'aruba', '~> 0.14.14'
gem 'pry-byebug'
gem 'rack_session_access'
gem 'jasmine', '~> 3.5'
gem 'jasmine-jquery-rails', '2.0.3'
gem 'rails-controller-testing'
#gem 'better_errors'
gem 'binding_of_caller' # plays well with better_errors
gem 'pry-rescue'
gem 'pry-stack_explorer'
end
group :development do
gem 'rubocop-git'
gem 'letter_opener'
gem 'railroady'
gem 'spring-commands-rspec'
end
group :test do
gem 'cucumber-rails', require: false
gem 'cucumber-rails-training-wheels'
gem 'capybara', '~> 3.31'
gem 'nokogiri', '~> 1.10'
gem 'factory_bot_rails'
gem 'webmock', '~> 3.8'
gem 'uri-handler'
gem 'selenium'
gem 'selenium-client'
gem 'shoulda'
gem 'vcr'
gem 'puffing-billy', '~> 2.3'
gem 'poltergeist'
gem 'phantomjs', require: 'phantomjs/poltergeist'
gem 'show_me_the_cookies', '~> 5.0'
gem 'rubocop-rspec', '>=1.28'
end
group :production do
gem 'newrelic_rpm'
end
gem 'coffee-rails', '5.0.0'
gem 'uglifier'
gem 'sass-rails', '~> 6.0'
gem 'less-rails', '~> 5.0'
gem 'twitter-bootstrap-rails', '3.2.2'
gem 'font-awesome-rails'
gem 'jquery-rails'
gem 'bootstrap_sortable_rails', '~> 1.11.2'
gem 'breadcrumbs_on_rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem 'therubyracer'
gem 'underscore-rails'
gem 'geocoder'
gem 'unicorn'
# To use markdown in editing static pages
gem 'redcarpet'
# validating organisation website URLs
gem 'url_validator', git: 'https://github.com/AgileVentures/url_validator.git'
gem 'httparty'
gem 'sucker_punch', '~> 2.1' # async job
gem 'rails_autolink'
gem 'paranoia', '~> 2.4'
gem 'dotenv-rails'
gem 'figaro'
gem 'airbrake'
# Using user friendly names in URLs
gem 'friendly_id', '~> 5.3.0'
# SEO
gem 'meta-tags', '~> 2.13'
#Social
gem 'twitter', '~> 7.0'
gem 'twitter-text', '~> 3.0'
gem 'koala' # Facebook integration
# Admin
gem 'administrate'