-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
102 lines (79 loc) · 2.55 KB
/
Gemfile
File metadata and controls
102 lines (79 loc) · 2.55 KB
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
source 'http://rubygems.org'
gem 'puma'
gem 'rails', '~> 4.0.0'
# Use postgresql as the database for Active Record
gem 'pg'
#Use pagination
gem 'kaminari'
#Annotate models
gem 'annotate', '>=2.6.0'
# Use for upload files
gem 'carrierwave'
gem 'rmagick', '~>2.13.2', require: 'RMagick'
gem 'ckeditor', github: 'keitoaino/ckeditor'
gem 'mini_magick'
#sudo apt-get install libmagickwand-dev # Setup this libs
#sudo apt-get install graphicsmagick-libmagick-dev-compat # to install Rmagick
#sudo apt-get install imagemagick
#sudo apt-get install libmagick9-dev
# Use SCSS for stylesheets
gem 'sass-rails', github: 'rails/sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', github: 'rails/coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.0.1'
gem 'haml'
gem 'rails_config'
gem 'gon'
group :development do
gem 'binding_of_caller'
gem 'better_errors'
gem 'meta_request'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'minitest-rails-shoulda'
gem 'minitest-reporters', '>= 0.8.0'
end
group :test do
gem 'database_cleaner'
gem 'faker'
gem 'minitest-rails-capybara'
gem 'selenium-webdriver', '~> 2.34.0'
gem 'guard-rspec'
gem 'launchy'
gem 'simplecov', require: false, group: :test
end
gem 'friendly_id', github: 'FriendlyId/friendly_id', branch: 'master'
gem 'devise', '~> 3.0.3'
gem 'devise_security_extension', github: 'phatworx/devise_security_extension'
gem 'ransack'
gem 'formtastic', github: 'justinfrench/formtastic'
gem 'polyamorous', github: 'jonatack/polyamorous', ref: '062c78be2edadfe5fbb104fe68d213fcbeae478d'
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'responders', github: 'plataformatec/responders'
gem 'inherited_resources', github: 'josevalim/inherited_resources'
gem 'acts-as-taggable-on', github: 'arabonradar/acts-as-taggable-on', branch: 'rails4'
gem 'nokogiri'
gem 'htmlentities'
gem 'truncate_html'
gem 'cancan'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'capistrano'
gem 'rvm-capistrano'
gem 'capistrano-ext'
gem 'capistrano-resque'
gem 'unicorn'
#Use for captcha
gem 'recaptcha', require: 'recaptcha/rails'
#Ajax file upload
gem 'remotipart', '~> 1.2'