forked from balanced/rentmybikes-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
58 lines (38 loc) · 1.13 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
# Subledger ADDED
# Currently using Boocx Gem, will need to replace with Subledger Gem (see bottom)
source 'https://rubygems.org'
# ruby 2.0.0 required for Heroku deployment, 1.9.3 works locally
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.0.0'
# Use pg for db
gem 'pg'
gem 'thin'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# devise for authentication
gem 'devise'
# rspec for testing
gem 'rspec-rails'
gem 'protected_attributes'
gem 'therubyracer'
gem 'less-rails'
group :development do
gem 'debugger'
end
gem 'balanced'
gem 'quiet_assets', group: :development
# Subledger Gem
require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE unless defined? OpenSSL::SSL::VERIFY_PEER
I_KNOW_THAT_OPENSSL_VERIFY_PEER_EQUALS_VERIFY_NONE_IS_WRONG = nil
source 'https://boocx:[email protected]'
gem 'boocx'