pocketknife 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -20,8 +20,16 @@ Jeweler::Tasks.new do |gem|
20
20
  gem.name = "pocketknife"
21
21
  gem.homepage = "http://github.com/igal/pocketknife"
22
22
  gem.license = "MIT"
23
- gem.summary = %Q{pocketknife is a tool for managing chef-solo nodes.}
24
- gem.description = %Q{pocketknife is a tool for managing chef-solo nodes.}
23
+ gem.summary = %Q{pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.}
24
+ gem.description = <<-HERE
25
+ pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.
26
+
27
+ Using pocketknife, you create a project that describes the configuration of your computers and then deploy it to bring them to their intended state.
28
+
29
+ With pocketknife, you don't need to setup or manage a specialized chef-server node or rely on an unreliable network connection to a distant hosted service whose security you don't control, deal with managing chef's security keys, or deal with manually synchronizing data with the chef-server datastore.
30
+
31
+ With pocketknife, all of your cookbooks, roles and nodes are stored in easy-to-use files that you can edit, share, backup and version control with tools you already have.
32
+ HERE
25
33
  gem.email = "igal+pocketknife@pragmaticraft.com"
26
34
  gem.authors = ["Igal Koshevoy"]
27
35
  gem.executables += %w[
@@ -4,8 +4,8 @@ class Pocketknife
4
4
  # Information about the Pocketknife version.
5
5
  module Version
6
6
  MAJOR = 0
7
- MINOR = 0
8
- PATCH = 1
7
+ MINOR = 1
8
+ PATCH = 0
9
9
  BUILD = nil
10
10
 
11
11
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
@@ -5,12 +5,19 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{pocketknife}
8
- s.version = "0.0.1"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Igal Koshevoy"]
12
- s.date = %q{2011-05-16}
13
- s.description = %q{pocketknife is a tool for managing chef-solo nodes.}
12
+ s.date = %q{2011-05-17}
13
+ s.description = %q{pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.
14
+
15
+ Using pocketknife, you create a project that describes the configuration of your computers and then deploy it to bring them to their intended state.
16
+
17
+ With pocketknife, you don't need to setup or manage a specialized chef-server node or rely on an unreliable network connection to a distant hosted service whose security you don't control, deal with managing chef's security keys, or deal with manually synchronizing data with the chef-server datastore.
18
+
19
+ With pocketknife, all of your cookbooks, roles and nodes are stored in easy-to-use files that you can edit, share, backup and version control with tools you already have.
20
+ }
14
21
  s.email = %q{igal+pocketknife@pragmaticraft.com}
15
22
  s.executables = ["pocketknife", "pocketknife"]
16
23
  s.extra_rdoc_files = [
@@ -31,6 +38,7 @@ Gem::Specification.new do |s|
31
38
  "lib/pocketknife/node.rb",
32
39
  "lib/pocketknife/node_manager.rb",
33
40
  "lib/pocketknife/version.rb",
41
+ "pocketknife.gemspec",
34
42
  "spec/pocketknife_execution_error_spec.rb",
35
43
  "spec/pocketknife_node_manager_spec.rb",
36
44
  "spec/pocketknife_node_spec.rb",
@@ -43,7 +51,7 @@ Gem::Specification.new do |s|
43
51
  s.licenses = ["MIT"]
44
52
  s.require_paths = ["lib"]
45
53
  s.rubygems_version = %q{1.3.7}
46
- s.summary = %q{pocketknife is a tool for managing chef-solo nodes.}
54
+ s.summary = %q{pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.}
47
55
 
48
56
  if s.respond_to? :specification_version then
49
57
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pocketknife
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 0
9
8
  - 1
10
- version: 0.0.1
9
+ - 0
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Igal Koshevoy
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-16 00:00:00 -07:00
18
+ date: 2011-05-17 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -144,7 +144,15 @@ dependencies:
144
144
  prerelease: false
145
145
  type: :development
146
146
  name: rcov
147
- description: pocketknife is a tool for managing chef-solo nodes.
147
+ description: |
148
+ pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.
149
+
150
+ Using pocketknife, you create a project that describes the configuration of your computers and then deploy it to bring them to their intended state.
151
+
152
+ With pocketknife, you don't need to setup or manage a specialized chef-server node or rely on an unreliable network connection to a distant hosted service whose security you don't control, deal with managing chef's security keys, or deal with manually synchronizing data with the chef-server datastore.
153
+
154
+ With pocketknife, all of your cookbooks, roles and nodes are stored in easy-to-use files that you can edit, share, backup and version control with tools you already have.
155
+
148
156
  email: igal+pocketknife@pragmaticraft.com
149
157
  executables:
150
158
  - pocketknife
@@ -209,6 +217,6 @@ rubyforge_project:
209
217
  rubygems_version: 1.3.7
210
218
  signing_key:
211
219
  specification_version: 3
212
- summary: pocketknife is a tool for managing chef-solo nodes.
220
+ summary: pocketknife is a devops tool for managing computers running chef-solo, powered by Opscode Chef.
213
221
  test_files: []
214
222