-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathGemfile
94 lines (85 loc) · 2.28 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
require "rbconfig"
HOST_OS = RbConfig::CONFIG["host_os"]
source "https://rubygems.org"
gem 'rails', '3.2.12'
gem 'nokogiri'
gem 'pg'
gem 'squeel'
gem 'rails_setup'
gem 'devise'
gem 'strong_parameters'
gem 'permitters', '~> 0.0.1'
gem 'cocoon'
gem 'meta_search', '>= 1.1.0.pre'
gem 'ransack'
gem 'simple_form'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'kaminari'
gem 'rails_admin'
gem 'american_date'
gem 'cancan'
gem 'paper_trail', '~> 2'
gem "Ascii85", "~> 1.0.2"
gem 'prawn'
gem 'prawn-print', :git => 'git://github.com/barsoom/prawn-print.git'
gem 'capistrano'
gem 'simple-capistrano-unicorn'
gem 'rvm-capistrano', '>=1.3.0.rc4', require: false
gem 'backup-task'
gem 'unicorn'
gem 'active_model_serializers'
gem 'turbolinks'
gem 'restful_json', '~> 4.2.0'
gem 'angularjs-rails-resource', '~> 0.1.5'
gem "prawn-labels"
group :assets do
gem "Ascii85", "~> 1.0.2"
gem 'coffee-rails'
gem 'sass-rails','~> 3.2'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'uglifier'
gem 'font-awesome-rails' , '~> 3.2.0.0'
gem 'kaminari-bootstrap'
gem "jquery-rails", "2.3.0"
gem 'jquery_datepicker'
gem 'haml-rails'
gem 'bourbon'
gem 'simple_form'
end
gem 'attr_encryptor'
gem 'decent_exposure'
group :development, :test do
# gem 'chrome_logger', :require => 'chrome_logger/railtie'
gem 'rack-mini-profiler'
gem 'cucumber-rails', :require => false
gem 'capybara'
gem 'database_cleaner'
gem 'shoulda'
gem 'launchy'
gem 'rspec-rails', '~> 2.12'
gem 'faker'
gem 'pry-rails'
gem 'pdf-inspector', :require => "pdf/inspector"
gem 'rb-fsevent', :require => RUBY_PLATFORM.include?("darwin") && "rb-fsevent"
gem 'ruby_gntp', :require => RUBY_PLATFORM.include?("darwin") && "ruby_gntp"
gem 'libnotify', :require => RUBY_PLATFORM.include?("linux") && "libnotify"
gem 'rb-inotify', :require => RUBY_PLATFORM.include?("linux") && "rb-inotify"
gem 'factory_girl_rails'
gem 'rb-fchange', :platform => :mswin
gem 'win32console', :platform => :mswin
gem 'rb-notifu', :platform => :mswin
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'guard-livereload'
gem 'yajl-ruby'
gem 'rack-livereload'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'timecop'
gem 'sqlite3'
gem 'foreman'
gem 'zeus'
gem 'spork', '~> 1.0rc'
end