eucalypt 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/eucalypt/core/templates/Gemfile.tt +5 -0
- data/lib/eucalypt/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf6983d37c1965e25ed1f634ad3c2e78b09e4630a3e1f544521f917926180ef4
|
|
4
|
+
data.tar.gz: '09b3c75b6d69d43e99ec574685105b43867ba8ad196a4f66c6495789f06bb7f0'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82529a63226bf7e6dc872a531df3c7f350e3b2a34560bd7222667bbf3974dfa0c3c5058c4b7ed50168e541f5a8974912d489db297bc12ba86b8a55c367c85c0d
|
|
7
|
+
data.tar.gz: f77b8b81f38607ac3434bc11ebdbc5949f30a81c89f4e186208581102e2d100bacf7338d6277cceb9df55696005fd560ebe5702d34ea7d1c371767ab33519dba
|
|
@@ -6,6 +6,11 @@ gem 'eucalypt', '<%= config[:version] %>'
|
|
|
6
6
|
gem 'rake', '~> 12.3'
|
|
7
7
|
gem 'thin', '~> 1.7'
|
|
8
8
|
|
|
9
|
+
# IRB is not bundled in Ruby >= 2.6
|
|
10
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.6')
|
|
11
|
+
gem 'irb', require: false
|
|
12
|
+
end
|
|
13
|
+
|
|
9
14
|
# Test environment
|
|
10
15
|
group :test do
|
|
11
16
|
gem 'rack-test', '~> 1.0', require: 'rack/test'
|
data/lib/eucalypt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eucalypt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edwin Onuonga
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|