forked from railsbridge-boston/docs-hardfork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (33 loc) · 819 Bytes
/
Gemfile
File metadata and controls
37 lines (33 loc) · 819 Bytes
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
source "https://rubygems.org"
# ensure github sources are fetched securely
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby "2.5.3"
gem "activesupport"
gem "erector", "~> 0.10.0"
gem "sinatra", "~> 1.4.0"
gem "nokogiri"
gem "thin"
gem "eventmachine", "~> 1.0.3"
gem "rack-codehighlighter"
gem "coderay"
gem "deckrb", "~> 0.5.2"
gem "sass"
gem "redcarpet"
gem "rubyzip"
gem "i18n", "~> 0.6.9"
gem "font-awesome-sass"
gem "bootstrap-sass"
gem "jquery-cdn"
gem "sprockets"
group :development do
gem "wrong", github: "sconover/wrong", ref: "9fae5b82" # remove when 0.7.2+ is released
gem "rspec"
gem "rerun"
gem "rake"
gem "rack-test"
gem "files", "~> 0.3.0"
gem "rb-fsevent", platform: :ruby
end