-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
53 lines (44 loc) · 1.55 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
source 'http://mirror1.prod.rhcloud.com/mirror/ruby/' unless ENV['OPENSHIFT_DATA_DIR'].nil?
source 'https://rubygems.org'
# Gems for the main application
gem 'sinatra', '~> 1.4.3'
gem 'sinatra-contrib', '~> 1.4'
gem 'slim', '~> 2.0', :require => false
gem 'zurb-foundation', '~> 4.2'
gem 'compass', '~> 0.12'
gem 'rake', '~> 10'
gem 'sprockets', '~> 2.10'
gem 'sprockets-helpers', '~> 1.0'
gem 'uglifier', '~> 2.1'
gem 'octokit', '~> 1.24'
gem 'git', '~> 1.2'
gem 'rack-ssl', '~> 1.3'
gem 'sprockets-sass', '~> 1.0'
gem 'execjs', '~> 1.4.0'
gem 'therubyracer', '~> 0.12', :platforms => :ruby
gem 'therubyrhino', '~> 2.0.2', :platforms => :jruby
# Sorry windows, there just isn't any good javascript platforms for you, you need JScript
# Gems related to the use of awestruct
group :awestruct do
gem 'awestruct', '~> 0.5.3'
# Markup and templates
#gem 'haml', '~> 4.0.2', :require => false
#gem 'kramdown', '~> 1.0.2', :require => false
#gem 'asciidoctor', '~> 0.1.3', :require => false
#gem 'RedCloth', '~> 4.2.9', :require => false
#gem 'github-markup', '~> 0.7.5', :require => false
#gem 'redcarpet', '~> 2.3.0', :require => false
# CSS frameworks
#gem 'bootstrap-sass', '~> 2.3', :require => false
end
group :developement do
gem 'rspec', '~> 2.13'
gem 'guard', '~> 1.8'
gem 'guard-rspec', '~> 3.0'
gem 'rack-test', '~> 0.6'
# gem 'puma', '~> 2.3', :require => false # I like puma and it runs everywhere
# gem 'puma', '~> 1.6.3', :require => false # I like puma and it runs everywhere
end
group :production_thin do
gem 'thin', '~> 1.6.1'
end