This repository has been archived by the owner on Aug 27, 2019. It is now read-only.
forked from GSA/mygov-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
77 lines (67 loc) · 1.65 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
source 'http://rubygems.org'
gem 'rails', '3.2.11'
gem 'mysql2'
gem 'json'
gem 'haml'
gem 'devise'
gem 'omniauth'
gem 'omniauth-openid'
gem 'oauth2-provider', :require => 'oauth2/provider', :git => '[email protected]:GSA-OCSIT/oauth2-provider.git', :branch => 'bearer-header'
gem 'rvm-capistrano'
gem 'bigdecimal'
gem 'will_paginate', '~> 3.0'
gem 'rails_admin'
gem 'cancan'
gem 'prawn'
gem 'pdf-forms'
gem 'ri_cal'
gem 'google-analytics-rails'
gem 'coffee-rails', '~> 3.2.1'
gem "airbrake"
gem 'maruku'
gem 'validates_email_format_of', :git => 'git://github.com/alexdunae/validates_email_format_of.git'
gem "permanent_records", "~> 2.3.0"
gem "httparty"
gem "paperclip", "~> 3.0"
gem "rabl"
gem 'simple_form'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '~> 0.11.0beta5', :require => 'v8'
gem 'libv8', '~> 3.11.8'
gem 'execjs'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'haml-rails'
gem 'quiet_assets'
gem 'hpricot'
gem 'ruby_parser'
gem "letter_opener"
end
group :test, :development do
gem 'rspec-rails'
gem 'oauth2'
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'simplecov', :require => false
gem 'webmock'
end
gem 'jquery-rails'
# 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 'ruby-debug'