kensa 1.0.0.beta3 → 1.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.
- data/README.md +29 -0
- data/kensa.gemspec +7 -3
- data/lib/heroku/kensa.rb +1 -1
- metadata +9 -11
data/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Kensa
|
|
2
|
+
=====
|
|
3
|
+
|
|
4
|
+
Kensa is a command-line utility to help Heroku add-on providers integrating
|
|
5
|
+
their services to Heroku. It offers commands to create and validate manifests,
|
|
6
|
+
and to run the same API calls Heroku runs on your service to provision and
|
|
7
|
+
deprovision resources.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Setup ######################################################################
|
|
11
|
+
|
|
12
|
+
Install it like any Ruby Gem:
|
|
13
|
+
|
|
14
|
+
$ gem install kensa
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Usage ######################################################################
|
|
18
|
+
|
|
19
|
+
Refer to the Heroku Add-ons Resource Center for more information on usage, and
|
|
20
|
+
how to build your Heroku add-on:
|
|
21
|
+
|
|
22
|
+
http://provider.heroku.com/resources/technical/build/provisioning
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Meta #######################################################################
|
|
26
|
+
|
|
27
|
+
Maintained by Pedro Belo.
|
|
28
|
+
|
|
29
|
+
Released under the MIT license. http://github.com/heroku/kensa
|
data/kensa.gemspec
CHANGED
|
@@ -5,17 +5,21 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{kensa}
|
|
8
|
-
s.version = "1.0.0
|
|
8
|
+
s.version = "1.0.0"
|
|
9
9
|
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Blake Mizerany", "Pedro Belo", "Adam Wiggins"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-09-14}
|
|
13
13
|
s.default_executable = %q{kensa}
|
|
14
14
|
s.description = %q{}
|
|
15
15
|
s.email = %q{pedro@heroku.com}
|
|
16
16
|
s.executables = ["kensa"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"README.md"
|
|
19
|
+
]
|
|
17
20
|
s.files = [
|
|
18
21
|
".gitignore",
|
|
22
|
+
"README.md",
|
|
19
23
|
"Rakefile",
|
|
20
24
|
"bin/kensa",
|
|
21
25
|
"kensa.gemspec",
|
data/lib/heroku/kensa.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kensa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
4
|
+
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
|
|
10
|
-
version: 1.0.0.beta3
|
|
9
|
+
version: 1.0.0
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Blake Mizerany
|
|
@@ -17,7 +16,7 @@ autorequire:
|
|
|
17
16
|
bindir: bin
|
|
18
17
|
cert_chain: []
|
|
19
18
|
|
|
20
|
-
date: 2010-
|
|
19
|
+
date: 2010-09-14 00:00:00 -07:00
|
|
21
20
|
default_executable: kensa
|
|
22
21
|
dependencies:
|
|
23
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -145,10 +144,11 @@ executables:
|
|
|
145
144
|
- kensa
|
|
146
145
|
extensions: []
|
|
147
146
|
|
|
148
|
-
extra_rdoc_files:
|
|
149
|
-
|
|
147
|
+
extra_rdoc_files:
|
|
148
|
+
- README.md
|
|
150
149
|
files:
|
|
151
150
|
- .gitignore
|
|
151
|
+
- README.md
|
|
152
152
|
- Rakefile
|
|
153
153
|
- bin/kensa
|
|
154
154
|
- kensa.gemspec
|
|
@@ -188,13 +188,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
188
188
|
version: "0"
|
|
189
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
190
|
requirements:
|
|
191
|
-
- - "
|
|
191
|
+
- - ">="
|
|
192
192
|
- !ruby/object:Gem::Version
|
|
193
193
|
segments:
|
|
194
|
-
-
|
|
195
|
-
|
|
196
|
-
- 1
|
|
197
|
-
version: 1.3.1
|
|
194
|
+
- 0
|
|
195
|
+
version: "0"
|
|
198
196
|
requirements: []
|
|
199
197
|
|
|
200
198
|
rubyforge_project:
|