forked from openSUSE/travel-support-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
94 lines (80 loc) · 2.14 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
source 'https://rubygems.org'
gem 'rails', '4.1.10'
# Choose your weapon
gem 'sqlite3'
#gem 'pg'
#gem 'mysql2', '~> 0.3.13'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# HAML as default
gem 'haml-rails'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# less support
gem 'therubyracer', platforms: :ruby
gem "less-rails"
gem "twitter-bootstrap-rails", '~> 2.2.8'
gem 'devise'
gem 'devise_ichain_authenticatable', '>= 0.3.0'
gem 'cancancan', '~> 1.7'
gem 'simple_form'
gem 'show_for'
gem 'inherited_resources'
gem 'localized_country_select'
gem "active_hash"
gem 'cocoon'
gem 'ransack'
gem 'kaminari'
gem 'carrierwave'
gem 'daemons'
gem 'date_validator'
gem 'espinita'
gem 'prawn', '~> 0.13.0'
gem 'prawn_rails'
gem 'axlsx_rails'
gem 'clockwork'
gem 'state_machines-activerecord'
# delayed_job must appear after protected_attributes
gem 'delayed_job_active_record'
gem "rspec-rails", group: [:development, :test]
gem 'exception_notification', group: :production
gem 'coveralls', require: false
# Moved out of the development group to avoid an error in every rake execution
# caused by lib/tasks/doc.rake (at least until we figure out a cleaner
# solution)
gem "yard", "0.8.7.4"
group :development do
gem "yard-activerecord"
gem 'state_machines-yard'
gem 'ruby-graphviz'
gem "redcarpet", :require => false
end
group :test do
gem "capybara"
gem "capybara-email"
gem "capybara-webkit"
gem "shoulda-matchers"
gem "database_cleaner", "~> 1.3.0"
gem "pdf-reader"
# gem "delorean"
end
# 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'
# To use debugger
# gem 'debugger'