forked from WikiEducationFoundation/WikiEduDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
123 lines (98 loc) · 2.69 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
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '5.1.4'
gem 'jbuilder', '~> 2.0'
gem 'haml-rails'
gem 'mediawiki_api', '0.7.1'
gem 'crack'
gem 'figaro'
gem 'whenever'
gem 'mysql2'
gem 'sidekiq'
gem 'activerecord-import'
gem 'dalli'
gem 'connection_pool'
gem 'faraday'
gem 'browser'
gem 'devise'
gem 'omniauth-mediawiki', git: 'https://github.com/ragesoss/omniauth-mediawiki.git'
gem 'validates_email_format_of'
gem 'deep_cloneable', '~> 2.3.0'
gem 'sentry-raven'
gem 'piwik_analytics', git: 'https://github.com/halfdan/piwik-ruby-tracking.git'
gem 'newrelic_rpm'
gem 'redcarpet'
gem 'breadcrumbs_on_rails'
gem 'hashugar'
gem 'simple_form'
gem 'acts_as_list'
gem 'sentimental'
# used for enabling CSS for mailer emails
gem 'premailer-rails'
gem 'nokogiri' # expected by premailer-rails but not required
# UNIVERSAL TEXT CONVERTER - FOR MARDOWN TO MEDIAWIKI TEXT
gem 'pandoc-ruby', '~> 1.0.0'
gem 'http_accept_language'
gem 'i18n-js'
gem 'mailgun_rails'
gem 'factory_girl_rails'
gem 'paper_trail'
gem "paperclip"
# TZ information is not available on Windows, needs to be installed separately
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'restforce', git: 'https://github.com/ejholmes/restforce.git'
gem 'rinruby' # R plots!
# If you want to be able to hack locally on rapidfire,
# run `export RAPIDFIREHACKINGMODE=true` in your terminal.
if ENV['RAPIDFIREHACKINGMODE'] == 'true'
gem 'rapidfire', path: './vendor/rapidfire'
else
gem 'rapidfire', git: 'https://github.com/WikiEducationFoundation/rapidfire', branch: 'master'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller', platforms: [:mri_21]
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'rb-fchange', require: false
gem 'rb-fsevent', require: false
gem 'rb-inotify', require: false
gem 'capistrano'
gem 'capistrano-rvm'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-sidekiq'
gem 'rack-mini-profiler'
gem 'rails-erd'
gem 'annotate', '~> 2.7.1'
end
group :development, :test do
gem 'pry-rails'
gem 'byebug'
gem 'faker'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'zeus', platforms: :ruby # zeus doesn't work on Windows
gem 'launchy'
gem 'timecop'
gem 'poltergeist'
gem 'rb-readline' # for those who don't have a native readline utility installed
end
group :test do
gem 'rake', '>= 11.0'
gem 'capybara'
gem 'capybara-screenshot'
gem 'database_cleaner'
gem 'webmock'
gem 'vcr'
gem 'simplecov', require: false
gem 'codeclimate-test-reporter', require: nil
gem 'shoulda-matchers', '~> 3.1'
gem 'rails-controller-testing'
end
group :production do
gem 'uglifier'
gem 'rails_12factor'
end