forked from happypeter/onestep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
75 lines (59 loc) · 1.44 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
source 'http://ruby.taobao.org'
# source 'https://rubygems.org'
gem 'rails'
gem 'kss'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
gem 'unicorn'
gem 'redcarpet'
gem 'carrierwave'
gem 'rmagick'
gem 'mime-types'
gem 'settingslogic'
gem 'ruby-pinyin'
gem 'acts_as_list'
gem "rails_autolink"
gem "jquery-atwho-rails"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'compass-rails'
gem 'coffee-rails'
# error loading in rails 4.1
# see https://github.com/bokmann/font-awesome-rails/issues/88 for more details
# gem "font-awesome-rails"
gem 'font-awesome-sass'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'rails3-jquery-autocomplete'
gem 'jquery-fileupload-rails'
gem 'haml'
# modal
gem "colorbox-rails"
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
gem 'capistrano'
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
end
# To use debugger
# gem 'debugger'
# use for alipay
gem 'alipay_dualfun'
# use for pagination
gem 'kaminari'
# TODO: switch to strong parameters
# for rails4
gem 'protected_attributes'