forked from hanami/hanami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
25 lines (20 loc) · 896 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
source 'https://rubygems.org'
gemspec
if !ENV['TRAVIS']
gem 'byebug', require: false, platforms: :mri if RUBY_VERSION >= '2.1.0'
gem 'yard', require: false
end
gem 'lotus-utils', '~> 0.3', require: false, github: 'lotus/utils', branch: '0.3.x'
gem 'lotus-validations', '~> 0.2', require: false, github: 'lotus/validations', branch: '0.2.x'
gem 'lotus-router', '~> 0.2', require: false, github: 'lotus/router', branch: '0.2.x'
gem 'lotus-controller', '~> 0.3', require: false, github: 'lotus/controller', branch: 'master'
gem 'lotus-view', '~> 0.3', require: false, github: 'lotus/view', branch: '0.3.x'
gem 'lotus-model', '~> 0.2', require: false, github: 'lotus/model', branch: '0.2.x'
platforms :ruby do
gem 'sqlite3'
end
platforms :jruby do
gem 'jdbc-sqlite3'
end
gem 'simplecov', require: false
gem 'coveralls', require: false