forked from openaustralia/theyvoteforyou
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
136 lines (113 loc) · 3.68 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
134
135
136
source 'https://rubygems.org'
gem 'rails' , '~> 6.0.3', '>= 6.0.3.1'#, '4.2.11.3'
gem 'mysql2'
gem 'sprockets-rails'
# Use SCSS for stylesheets
gem 'sass-rails'#, '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'#, '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'#, '~> 1.2'
gem "haml"
gem "htmlentities"
gem 'marker'#, github: 'openaustralia/marker', branch: 'publicwhip', ref: 'aa7ce85'
# Necessary because we have a column called "valid" in the pw_divisions table.
# TODO Change the name of the column with a migration and remove this gem
gem 'safe_attributes'
gem 'newrelic_rpm'
gem 'devise'
gem 'devise-i18n'
gem 'devise-async'
gem 'attribute-defaults'
gem 'diffy'
gem 'ranker'
gem 'honeybadger'
gem 'delayed_job_active_record'
gem 'bootstrap-sass'
gem 'autoprefixer-rails'
gem 'config'
gem 'mechanize' # Used to download debates
gem 'nokogiri' # Explicitly included as it's used directly when testing division loader
gem 'seed_dump'
gem "redcarpet"
gem "reverse_markdown"
gem 'paper_trail'
# TODO This is using a fairly old version of the marked js lib. Update this gem
gem "marked-rails"
gem 'simple_form'#, '3.1.0.rc2' # Ask for 3.1rc since it plays nicer with Bootstrap 3
gem 'bootstrap-select-rails'
gem 'foundation-icons-sass-rails'
gem 'meta-tags'
gem 'numbers_and_words', '~> 0.10.0'
gem 'searchkick','~> 4.6.2'
gem 'elasticsearch', '< 7.14'
gem 'typhoeus'
gem 'foreman'
gem 'rails-i18n', '~> 4.0.0'
gem 'gettext_i18n_rails'
gem 'kaminari'
gem 'kaminari-i18n'#, '~> 0.3.2'
# If this is merged we can go back to the gem: https://github.com/everypolitician/everypolitician-popolo/pull/18
gem 'everypolitician-popolo', github: "openaustralia/everypolitician-popolo", branch: "allow-empty-collections"
group :test do
# We can't use transactional fixtures as the php app and the rails app need to see
# the same database. So, using database_cleaner instead
gem "database_cleaner"
gem 'rspec-activemodel-mocks'
gem 'webmock'
gem 'vcr'
gem 'factory_girl_rails'
gem 'capybara'
gem 'email_spec'
gem "codeclimate-test-reporter", group: :test, require: nil
end
group :development do
# Required for html2haml
gem "ruby_parser"
gem 'guard'
gem 'guard-rspec'
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'better_errors'
gem 'binding_of_caller'
gem 'debase'
gem 'ruby-debug-ide'
gem 'mailcatcher'
gem 'rack-mini-profiler'
gem 'capistrano', '~> 3.0', require: false
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'rvm1-capistrano3', require: false
gem 'capistrano-maintenance', github: 'capistrano/maintenance', require: false
gem 'mina'
# gem 'mina-multistage'
gem 'mina-foreman', git: "https://github.com/OPORA/mina-foreman"
gem 'gettext', '>=3.0.2', require: false
end
group :test, :development do
gem 'rspec-rails'
gem 'fuubar'
end
group :production do
gem 'dalli'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]