forked from locomotivecms/steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (31 loc) · 1.13 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
source 'https://rubygems.org'
gemspec
group :development do
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '257047b'
# gem 'locomotivecms_common', path: '../common'
# gem 'locomotivecms_models', '~> 0.0.1', path: '../models'
# gem 'locomotivecms_models', '0.0.1.pre.alpha'
# gem 'locomotivecms-liquid', path: '/Users/didier/Documents/LocomotiveCMS/gems/liquid'
# gem 'duktape', path: '/Users/didier/Documents/NoCoffee/ProjectsX/duktape.rb'
# gem 'duktape', github: 'judofyr/duktape.rb', ref: '20ef6a5'
# gem 'thin'
gem 'puma'
gem 'haml', '~> 4.0.6'
gem 'rack-mini-profiler', '~> 0.10.1'
gem 'flamegraph'
gem 'stackprof' # ruby 2.1+ only
gem 'memory_profiler'
end
group :test do
gem 'rspec', '~> 3.4.0'
gem 'json_spec', '~> 1.1.4'
gem 'i18n-spec', '~> 0.6.0'
gem 'timecop', '~> 0.8.0'
gem 'pry-byebug', '~> 3.3.0'
gem 'rack-test', '~> 0.6.3'
gem 'codeclimate-test-reporter', '~> 0.4.7', require: false
gem 'coveralls', '~> 0.8.1', require: false
end
platform :ruby do
ruby '2.3.3'
end