-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGemfile
46 lines (38 loc) · 1.03 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
source 'https://rubygems.org'
gem 'rails', '4.0.2'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails', '~> 3.1.0'
gem 'turbolinks', '~> 2.2.1'
gem "rake", '~> 10.1.1'
gem "will_paginate", '~> 3.0.5'
gem "safe_yaml", '~> 1.0.1'
gem "jquery-ui-rails", '~> 4.2.0'
gem "nilify_blanks", '~> 1.0.3'
gem "highrise", '~> 3.1.5'
gem "mail", '~> 2.5.4'
gem "omniauth-google-oauth2", '~> 0.2.2'
gem "edn", '~> 1.0.2'
gem "httparty", '~> 0.13.0'
gem "american_date"
gem 'stockroom', git: 'https://github.com/ryanzverner/stockroom-ruby-client.git'
group :doc do
gem 'sdoc', require: false
end
group :test, :development do
gem "sqlite3", '~> 1.3.9'
gem "rspec-rails", '~> 2.14.1'
gem "teaspoon"
gem "teaspoon-jasmine"
gem "awesome_print"
gem "better_errors", '1.1.0'
end
gem 'simplecov', :require => false, :group => :test
group :production do
gem 'unicorn', '~> 4.8.2'
gem 'mysql2', '~> 0.4.10'
end
gem "guard", "~> 2.14"
gem "guard-rspec", "~> 4.3"