This repository has been archived by the owner on Oct 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
87 lines (71 loc) · 1.86 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
source 'https://rubygems.org'
ruby '1.9.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# Markdown
gem 'redcarpet'
gem 'pygments.rb'
gem "twitter-bootstrap-rails"
gem 'asset_sync'
gem 'unicorn'
gem 'newrelic_rpm'
gem 'httparty'
gem 'dotenv-rails'
gem 'cancan'
gem 'dalli'
gem 'twitter-bootstrap-calendar'
gem 'bootstrap-wysihtml5-rails', :git => "https://github.com/steven-ferguson/bootstrap-wysihtml5-rails"
gem 'paperclip'
gem 'paperclip-aws'
gem 'acts_as_commentable'
gem 'exception_notification'
gem 'validates_timeliness'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :test do
gem 'timecop'
gem 'poltergeist'
gem 'timecop'
gem 'phantomjs', '~> 1.9', require: 'phantomjs/poltergeist'
end
group :development, :test do
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'cucumber', '1.2.5', require: false
gem 'cucumber-rails', require: false
gem 'selenium-webdriver'
gem 'spork', '~> 1.0rc'
gem 'factory_girl_rails'
gem 'launchy'
gem 'shoulda-matchers'
gem 'pry'
gem 'better_errors'
end
group :development do
gem 'puppet'
gem 'librarian-puppet'
gem 'capistrano'
gem 'rvm-capistrano'
gem 'quiet_assets'
gem 'webrick', '1.3.1'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use debugger
# gem 'debugger', group: [:development, :test]