-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
84 lines (80 loc) · 2.47 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
source 'https://rubygems.org'
gem 'rails', '~> 6.1.5.1'
gem 'rake'
gem 'will_paginate'
gem 'tabs_on_rails'
gem 'cancancan'
#gem 'cancan', :git => 'https://github.com/acesuares/cancan.git', :branch => '2.0'
gem 'carrierwave'
gem 'remotipart', '~> 1.0'
gem 'paper_trail'
gem 'devise'
gem 'devise-i18n', :git => 'https://github.com/acesuares/devise-i18n.git'
gem 'inline_forms', '~> 6.1'
# gem 'inline_forms', path: "/home/ace/Documents/602_Rails_3/inline_forms"
# gem 'webpacker'
gem 'validation_hints'
gem 'mini_magick'
gem 'wikipedia-client'
gem 'rails-i18n', :git => 'https://github.com/svenfuchs/rails-i18n.git' # since https://github.com/svenfuchs/rails-i18n/pull/794 we don't have to maintain 'https://github.com/acesuares/rails-i18n.git' anymore!
gem 'i18n-active_record', :git => 'https://github.com/acesuares/i18n-active_record.git'
gem 'unicorn'
gem 'rvm'
gem 'mysql2'
# gem 'omniauth-github'
# gem 'omniauth-facebook'
# gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'thumbs_up'
gem 'commontator'#, :git => 'https://github.com/lml/commontator.git', :branch => 'master'
gem 'sidekiq'
gem 'sinatra', :require => nil
gem 'whenever', :require => false
gem 'jquery-rails'
gem 'jquery-ui-sass-rails'
gem 'foundation-rails', '~> 5.5'
gem 'foundation-icons-sass-rails'
gem 'sass-rails'
gem 'coffee-rails'
#gem 'compass-rails'
gem 'figaro'
# gem 'libv8-node'
gem 'mini_racer', platforms: :ruby
gem 'uglifier'
gem 'active_model_serializers', git: 'https://github.com/rails-api/active_model_serializers', branch: '0-9-stable'
gem 'pdfkit'
gem "ckeditor", "~> 4.3.0"
gem 'yandex-translator'
gem 'jquery-timepicker-rails'
gem 'rails-jquery-autocomplete'
gem 'lightbox2-rails'
gem 'sitemap_generator'
gem 'ahoy_matey'
# Include everything needed to run rake, tests, features, etc.
group :development do
gem 'yaml_db'
gem 'rvm-capistrano', require: false
gem 'seed_dump', git: 'https://github.com/acesuares/seed_dump.git'
gem 'switch_user'
gem 'shoulda'
gem 'bundler'
gem 'jeweler'
gem 'test-unit'
# gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano-sidekiq'
gem 'listen'
gem 'capistrano', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'rvm1-capistrano3', require: false
gem 'capistrano3-unicorn'
end
group :development, :test do
gem 'capybara'
gem 'poltergeist'
gem 'rspec-rails'
#gem 'factory_bot_rails'
gem 'launchy'
gem 'rails-controller-testing'
end
# gem "byebug", "~> 11.1", :groups => [:development, :test]