kensa 1.4.4 → 1.4.5
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.
- data/Gemfile.lock +1 -1
- data/LICENSE +22 -0
- data/kensa.gemspec +2 -0
- data/lib/heroku/kensa/version.rb +1 -1
- metadata +6 -4
data/Gemfile.lock
CHANGED
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2013 Heroku, Inc.
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/kensa.gemspec
CHANGED
|
@@ -7,6 +7,8 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.version = Heroku::Kensa::VERSION
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
|
|
10
|
+
s.license = 'MIT'
|
|
11
|
+
|
|
10
12
|
s.authors = ["Blake Mizerany", "Pedro Belo", "Adam Wiggins", 'Glenn Gillen', 'Chris Continanza', 'Matthew Conway']
|
|
11
13
|
s.default_executable = %q{kensa}
|
|
12
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.}
|
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: 1.4.
|
|
4
|
+
version: 1.4.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -243,6 +243,7 @@ files:
|
|
|
243
243
|
- .travis.yml
|
|
244
244
|
- Gemfile
|
|
245
245
|
- Gemfile.lock
|
|
246
|
+
- LICENSE
|
|
246
247
|
- README.md
|
|
247
248
|
- Rakefile
|
|
248
249
|
- bin/kensa
|
|
@@ -275,7 +276,8 @@ files:
|
|
|
275
276
|
- test/sso_check_test.rb
|
|
276
277
|
- test/sso_test.rb
|
|
277
278
|
homepage: http://provider.heroku.com/resources
|
|
278
|
-
licenses:
|
|
279
|
+
licenses:
|
|
280
|
+
- MIT
|
|
279
281
|
post_install_message:
|
|
280
282
|
rdoc_options: []
|
|
281
283
|
require_paths:
|
|
@@ -288,7 +290,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
288
290
|
version: '0'
|
|
289
291
|
segments:
|
|
290
292
|
- 0
|
|
291
|
-
hash:
|
|
293
|
+
hash: 887835306524825630
|
|
292
294
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
293
295
|
none: false
|
|
294
296
|
requirements:
|
|
@@ -297,7 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
297
299
|
version: '0'
|
|
298
300
|
segments:
|
|
299
301
|
- 0
|
|
300
|
-
hash:
|
|
302
|
+
hash: 887835306524825630
|
|
301
303
|
requirements: []
|
|
302
304
|
rubyforge_project: kensa
|
|
303
305
|
rubygems_version: 1.8.23
|