-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (56 loc) · 1.63 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
source 'https://rubygems.org'
gem 'rack', '~> 2.0.1'
gem 'rails', '~> 5.0.1'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'rails-i18n', '~> 5.0.0' # For 5.0.x
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'turbolinks', '~> 5'
gem 'jquery-turbolinks'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'puma'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'sqlite3'
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.0.0'
gem 'meta_request'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'cucumber-rails', :require => false
# database_cleaner is not required, but highly recommended
gem 'database_cleaner'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'devise'
#gem 'unicorn'
gem 'nginx'
gem 'pg', '~> 0.18'
gem 'rufus-scheduler'
gem 'settingslogic'
gem 'rack-attack'
gem 'walletone', git: 'https://github.com/BrandyMint/walletone'
gem 'unitpay'
gem 'dalli'
gem 'bcrypt'
gem "recaptcha", require: "recaptcha/rails"
gem 'passenger'
gem 'rb-inotify'
gem 'omniauth-vkontakte'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'whenever', require: false