forked from pglombardo/PasswordPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (42 loc) · 1.02 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
source 'http://rubygems.org'
source 'https://repo.fury.io/pglombardo/'
gem 'rails', '~> 3.2'
group :development, :test do
gem 'silent-postgres'
gem "ruby-debug19", :platforms => :ruby_19
gem "ruby-debug", :platforms => :ruby_18
gem "byebug", :platforms => :ruby_20
gem "nifty-generators"
gem 'pry'
end
gem 'json'
gem 'haml'
gem 'haml-rails'
gem 'fastercsv' # Only required on Ruby 1.8 and below
gem 'rails_admin'
gem 'therubyracer'
gem 'ezcrypto', :git => 'git://github.com/pglombardo/ezcrypto.git'
gem 'modernizr-rails', :git => 'git://github.com/russfrisch/modernizr-rails.git'
gem "high_voltage", '~> 2.1.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'foreman'
gem 'unicorn'
gem 'jquery-rails'
gem 'delayed_job_active_record'
gem "devise"
gem "omniauth"
gem 'omniauth-openid'
gem 'omniauth-twitter'
group :production do
gem 'pg'
gem 'oboe-heroku'
end
group :private do
gem "sqlite3"
end