-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
83 lines (55 loc) · 1.72 KB
/
Copy pathGemfile
File metadata and controls
83 lines (55 loc) · 1.72 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
source 'https://rubygems.org'
gem 'rails', '3.2.17'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'hirb', '0.7.2'
gem 'wirb', '1.0.3'
gem 'test-unit', '3.2.3'
gem 'sqlite3', '1.3.10'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails', '3.1.2'
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'#, ref: '4610f6978fbc48b07df916ccd26ae79816d0bb5a'
gem 'jquery-ui-rails', '5.0.3'
gem 'simple-navigation' , github: 'andi/simple-navigation'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
gem 'byebug', '3.5.1'
gem 'devise', '3.4.1'
gem "paperclip", "3.5.4"
gem 'formtastic', "3.1.3"
gem 'rubyzip', '1.1.6' # will load new rubyzip version
gem 'zip-zip', '0.3' # will load compatibility for old rubyzip API.
gem 'quiet_assets', :group => :development
gem 'mail', '2.5.4'
gem 'paper_trail', '3.0.6'
gem 'rjb', '1.5.3'
gem 'listen', '2.8.5' # needs to be fixed to support ruby 2.1
gem 'activeadmin', '1.0.0.pre4'
gem 'cancan', github: 'ryanb/cancan', branch: "2.0"
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
gem "database_cleaner"
gem 'selenium-webdriver'
end
# Necessary for current rails version
gem 'timers', '4.1.2'
gem 'nokogiri', '1.7.0.1'
gem 'rb-inotify', '0.9.8'
gem 'actionpack', '3.2.17'
gem 'bourbon', '4.3.3'
gem 'hitimes', '1.2.4'