knife-spork 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -72,7 +72,7 @@ The `default_environments` directive allows you to specify a default list of env
72
72
  The `version_change_threshold` directive allows you to customise the threshold used by a safety check in spork promote which will prompt for confirmation if you're promoting a cookbook by more than version_change_threshold versions. This defaults to 2 if not set, ie promoting a cookbook from v1.0.1 to v 1.0.2 will not trip this check, wheras promoting from v1.0.1 to v1.0.3 will.
73
73
 
74
74
  #### Environment Path
75
- The `envirinment_path` allows you to specify the path to where you store your chef environment json files. If this parameter is not specified, spork will default to using the first element of your cookbook_path, replacing the word "cookbooks" with "environments"
75
+ The `environment_path` allows you to specify the path to where you store your chef environment json files. If this parameter is not specified, spork will default to using the first element of your cookbook_path, replacing the word "cookbooks" with "environments"
76
76
 
77
77
  #### Plugins
78
78
  Knife spork supports plugins to allow users to hook it into existing systems such as source control, monitoring and chat systems. Plugins are enabled / disabled by adding / removing their config block from the plugin section of the config file. Any of the default plugins shown above can be disabled by removing their section.
data/knife-spork.gemspec CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path('../lib', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'knife-spork'
5
- gem.version = '1.0.4'
5
+ gem.version = '1.0.5'
6
6
  gem.authors = ["Jon Cowie"]
7
7
  gem.email = 'jonlives@gmail.com'
8
8
  gem.homepage = 'https://github.com/jonlives/knife-spork'
@@ -45,7 +45,7 @@ module KnifeSpork
45
45
  if config[:remote]
46
46
  ui.msg "Uploading #{environment.name}.json to Chef Server"
47
47
  save_environment_changes_remote(e)
48
- ui.info 'Promotion complete!'
48
+ ui.info "Promotion complete at #{Time.now}!"
49
49
  else
50
50
  ui.info "Promotion complete. Don't forget to upload your changed #{environment.name}.json to Chef Server"
51
51
  end
@@ -3,7 +3,7 @@ require 'knife-spork/plugins/plugin'
3
3
  module KnifeSpork
4
4
  module Plugins
5
5
  class HipChat < Plugin
6
- name :hip_chat
6
+ name :hipchat
7
7
 
8
8
  def perform; end
9
9
 
data/plugins/Git.md CHANGED
@@ -40,7 +40,7 @@ The git remote to push/pull to/from.
40
40
  - Default: `origin`
41
41
 
42
42
  #### branch
43
- The git brnach to push/pull to/from.
43
+ The git branch to push/pull to/from.
44
44
 
45
45
  - Type: `String`
46
46
  - Default: `master`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-spork
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-14 00:00:00.000000000 Z
12
+ date: 2012-09-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef
16
- requirement: &70208983407820 !ruby/object:Gem::Requirement
16
+ requirement: &70176503210040 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.10.4
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70208983407820
24
+ version_requirements: *70176503210040
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: git
27
- requirement: &70208983407340 !ruby/object:Gem::Requirement
27
+ requirement: &70176503209540 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 1.2.5
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70208983407340
35
+ version_requirements: *70176503209540
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: app_conf
38
- requirement: &70208983406820 !ruby/object:Gem::Requirement
38
+ requirement: &70176503209080 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: 0.4.0
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70208983406820
46
+ version_requirements: *70176503209080
47
47
  description: A workflow plugin to help many devs work with the same chef repo/server
48
48
  email: jonlives@gmail.com
49
49
  executables: []
@@ -70,7 +70,7 @@ files:
70
70
  - lib/knife-spork/plugins/foodcritic.rb
71
71
  - lib/knife-spork/plugins/git.rb
72
72
  - lib/knife-spork/plugins/graphite.rb
73
- - lib/knife-spork/plugins/hip_chat.rb
73
+ - lib/knife-spork/plugins/hipchat.rb
74
74
  - lib/knife-spork/plugins/irccat.rb
75
75
  - lib/knife-spork/plugins/plugin.rb
76
76
  - lib/knife-spork/runner.rb