kensa 1.5.0 → 2.0.0
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/.travis.yml +0 -1
- data/Gemfile.lock +1 -1
- data/LICENSE +16 -7
- data/README.md +1 -1
- data/kensa.gemspec +2 -3
- data/lib/heroku/kensa/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1380b105fcab3ca9bc7bd5293125d617a2205277
|
|
4
|
+
data.tar.gz: 3aef623d21b29f43309d80adddf60f9d6042493b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c33d1f087c9e2115551947c6dbe8bc2049434efb74f8f23bc7862641e84456da1117ca3a66bf40ea90d25237a36e14f5017dceb12cccd95033fe1acabacb0522
|
|
7
|
+
data.tar.gz: e0792a9afae3de099f2473438360f691406365393c8e92d54c35086fd3c580fa3588a9c6aed326c3ed41ff342b1ab89b994b77640c3df59e9df4c2220a185a9b
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
data/LICENSE
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Copyright © 2013 - 2014 Heroku, Inc. A full list of contributors is available
|
|
4
|
+
on GitHub:
|
|
5
|
+
|
|
6
|
+
https://github.com/heroku/kensa/graphs/contributors
|
|
4
7
|
|
|
5
8
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
9
|
a copy of this software and associated documentation files (the
|
|
@@ -15,8 +18,14 @@ included in all copies or substantial portions of the Software.
|
|
|
15
18
|
|
|
16
19
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
20
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
22
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
23
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
24
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
25
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
26
|
+
|
|
27
|
+
For source code, to contribute to kensa, or just to say hello:
|
|
28
|
+
|
|
29
|
+
https://github.com/heroku/kensa
|
|
30
|
+
|
|
31
|
+
Happy hacking!
|
data/README.md
CHANGED
|
@@ -25,6 +25,6 @@ how to build your Heroku add-on:
|
|
|
25
25
|
|
|
26
26
|
## Meta #######################################################################
|
|
27
27
|
|
|
28
|
-
Maintained by
|
|
28
|
+
Maintained by the Heroku Add-ons Team (and you!).
|
|
29
29
|
|
|
30
30
|
Released under the MIT license. <https://github.com/heroku/kensa>
|
data/kensa.gemspec
CHANGED
|
@@ -12,9 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.authors = ["Blake Mizerany", "Pedro Belo", "Adam Wiggins", 'Glenn Gillen', 'Chris Continanza', 'Matthew Conway']
|
|
13
13
|
s.default_executable = %q{kensa}
|
|
14
14
|
s.description = %q{Kensa is a command-line tool to help add-on providers integrating their services with Heroku. It manages manifest files, and provides a TDD-like approach for programmers to test and develop their APIs.}
|
|
15
|
-
s.email = %q{
|
|
16
|
-
|
|
17
|
-
s.rubyforge_project = "kensa"
|
|
15
|
+
s.email = %q{provider@heroku.com}
|
|
18
16
|
|
|
19
17
|
s.files = `git ls-files`.split("\n")
|
|
20
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
@@ -22,6 +20,7 @@ Gem::Specification.new do |s|
|
|
|
22
20
|
s.require_paths = ["lib"]
|
|
23
21
|
|
|
24
22
|
s.homepage = %q{http://provider.heroku.com/resources}
|
|
23
|
+
s.required_ruby_version = '~> 1.9'
|
|
25
24
|
s.rubygems_version = %q{1.6.2}
|
|
26
25
|
s.summary = %q{Tool to help Heroku add-on providers integrating their services}
|
|
27
26
|
|
data/lib/heroku/kensa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kensa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Blake Mizerany
|
|
@@ -192,7 +192,7 @@ dependencies:
|
|
|
192
192
|
description: Kensa is a command-line tool to help add-on providers integrating their
|
|
193
193
|
services with Heroku. It manages manifest files, and provides a TDD-like approach
|
|
194
194
|
for programmers to test and develop their APIs.
|
|
195
|
-
email:
|
|
195
|
+
email: provider@heroku.com
|
|
196
196
|
executables:
|
|
197
197
|
- kensa
|
|
198
198
|
extensions: []
|
|
@@ -244,16 +244,16 @@ require_paths:
|
|
|
244
244
|
- lib
|
|
245
245
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
246
246
|
requirements:
|
|
247
|
-
- - "
|
|
247
|
+
- - "~>"
|
|
248
248
|
- !ruby/object:Gem::Version
|
|
249
|
-
version: '
|
|
249
|
+
version: '1.9'
|
|
250
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
251
|
requirements:
|
|
252
252
|
- - ">="
|
|
253
253
|
- !ruby/object:Gem::Version
|
|
254
254
|
version: '0'
|
|
255
255
|
requirements: []
|
|
256
|
-
rubyforge_project:
|
|
256
|
+
rubyforge_project:
|
|
257
257
|
rubygems_version: 2.2.2
|
|
258
258
|
signing_key:
|
|
259
259
|
specification_version: 4
|