-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (32 loc) · 751 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '~> 4.1', '>= 4.1.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'jquery-rails'
gem 'gollum'
gem 'gollum-lib'
gem 'jammit'
gem 'redcarpet'
#gem 'sanitize', '~> 4.6.3'
group :development do
gem 'mysql2'
end
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'cucumber'
gem 'factory_girl'
gem 'therubyracer'
end
group :production do
gem 'pg'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
end