-
Notifications
You must be signed in to change notification settings - Fork 121
/
Gemfile
138 lines (122 loc) · 3.31 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
137
138
if ENV['USE_OFFICIAL_GEM_SOURCE']
source 'https://rubygems.org'
else
source 'https://ruby.taobao.org'
end
gem "rails", "~> 4.0.0"
platforms :ruby, :mingw do
# use mysql
gem 'mysql2'
end
platforms :jruby do
gem 'jruby-openssl'
gem 'activerecord-jdbcmysql-adapter', require: false
# use sqlite3
gem 'activerecord-jdbcsqlite3-adapter', require: false
#gem 'jruby-ehcache', require: 'ehcache'
#gem 'trinidad', require: false, groups: 'production'
gem 'warbler'
end
gem 'puma', platforms: [:jruby, :ruby]
# rails 3 compatible
gem 'rails-observers'
gem 'protected_attributes'
gem 'rails_autolink'
gem 'will_paginate'
gem 'kaminari'
gem 'kaminari-bootstrap', '~> 3.0.1'
gem "aasm"
gem 'paperclip'
gem 'dalli'
gem "oauth"
gem "oauth-plugin"
gem 'virtus'
gem 'delayed_job'
gem 'delayed_job_active_record'
#gem "delayed_job_web"
gem 'rufus-scheduler'
gem 'acts_as_list'
gem 'awesome_nested_set'
gem 'themes_for_rails', github: 'ShiningRay/themes_for_rails'
gem 'alias_fallback', github: 'ShiningRay/alias_fallback'
gem 'inherited_resources'
gem 'squeel'
gem 'mobile-fu'
gem "calendar_helper"
#gem "rinku", require: 'rails_rinku', :platforms
gem 'acts_as_favorite', git: 'https://github.com/ShiningRay/acts_as_favorite.git'
gem 'acts_as_taggable_on_steroids', git: 'https://github.com/ShiningRay/acts_as_taggable_on_steroids.git', require: 'acts_as_taggable'
gem 'pundit'
gem 'rolify'
gem 'simple_form', '~> 3.1.0.rc1'
gem 'lazy_high_charts'
# group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'therubyrhino', platforms: :jruby
gem 'uglifier', '>= 1.0.3'
#gem 'turbo-sprockets-rails3'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'turbolinks-redirect'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'autoprefixer-rails'
# end
gem 'remotipart'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-bundler'
gem 'capistrano3-puma', github: "seuros/capistrano-puma"
gem 'win32console', '~> 1.3.2', platforms: :mingw
gem 'jruby-pageant', require: false, platforms: :jruby
gem 'better_errors'
gem 'binding_of_caller'
end
group :test, :development do
gem 'spring-commands-rspec'
gem "rspec-rails"
gem 'guard'
gem 'guard-livereload'
gem 'guard-rspec', require: false
gem 'rack-livereload'
gem 'rb-inotify', require: false
gem 'rb-fsevent', require: false
gem 'rb-fchange', require: false
gem 'terminal-notifier-guard'
gem 'guard-cucumber'
gem 'guard-bundler'
gem 'guard-jruby-rspec', platforms: :jruby
gem 'raddocs'
gem 'rspec_api_documentation'
end
group :test do
gem "factory_girl_rails"
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
# gem 'ruby_gntp'
gem 'quiet_assets'
gem 'forgery'
gem 'cucumber-rails', require: false
end
group :production do
gem 'rack-cache'
end
gem 'newrelic_rpm'
gem 'draper'
gem "active_model_serializers"
gem 'responders'
gem 'has_scope'
gem 'rest-client'