-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathGemfile
40 lines (36 loc) · 921 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
source 'https://rubygems.org'
gem 'rack'
gem 'rackup'
gem 'hikidoc'
gem 'fastimage'
gem 'emot'
gem 'mail'
gem 'rake'
group :development do
gem 'pit', require: false
gem 'racksh', require: false
gem 'redcarpet'
gem 'octokit'
gem 'mime-types'
group :test do
gem 'test-unit'
gem 'rspec'
gem 'capybara', require: 'capybara/rspec'
gem 'date', '>= 3.1.1' # for compatibility of capybara
gem 'selenium-webdriver'
gem 'launchy'
gem 'sequel'
gem 'sqlite3'
gem 'jasmine', '< 3'
gem 'simplecov', require: false
gem 'coveralls', '~> 0.8', require: false
gem "rexml"
gem "webrick"
end
end
# https://github.com/redmine/redmine/blob/master/Gemfile#L89
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.exist?(local_gemfile)
puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
instance_eval File.read(local_gemfile)
end