knife-github 0.0.6 → 0.0.7

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.
Files changed (41) hide show
  1. data/.gitignore +1 -0
  2. data/.yardopts +1 -0
  3. data/LICENSE +201 -201
  4. data/Rakefile +5 -0
  5. data/doc/Chef.html +132 -0
  6. data/doc/Chef/Knife.html +138 -0
  7. data/doc/Chef/Knife/GithubBase.html +784 -0
  8. data/doc/Chef/Knife/GithubBaseList.html +316 -0
  9. data/doc/Chef/Knife/GithubClone.html +341 -0
  10. data/doc/Chef/Knife/GithubCompare.html +299 -0
  11. data/doc/Chef/Knife/GithubDeploy.html +1449 -0
  12. data/doc/Chef/Knife/GithubDiff.html +473 -0
  13. data/doc/Chef/Knife/GithubList.html +299 -0
  14. data/doc/KnifeGithubCleanup.html +115 -0
  15. data/doc/KnifeGithubCleanup/GithubCleanup.html +425 -0
  16. data/doc/KnifeGithubSearch.html +115 -0
  17. data/doc/KnifeGithubSearch/GithubSearch.html +325 -0
  18. data/doc/_index.html +206 -0
  19. data/doc/class_list.html +54 -0
  20. data/doc/css/common.css +1 -0
  21. data/doc/css/full_list.css +57 -0
  22. data/doc/css/style.css +338 -0
  23. data/doc/file.README.html +118 -0
  24. data/doc/file_list.html +56 -0
  25. data/doc/frames.html +26 -0
  26. data/doc/index.html +118 -0
  27. data/doc/js/app.js +214 -0
  28. data/doc/js/full_list.js +178 -0
  29. data/doc/js/jquery.js +4 -0
  30. data/doc/method_list.html +197 -0
  31. data/doc/top-level-namespace.html +114 -0
  32. data/lib/chef/knife/github_base.rb +4 -4
  33. data/lib/chef/knife/github_baselist.rb +6 -3
  34. data/lib/chef/knife/github_cleanup.rb +1 -1
  35. data/lib/chef/knife/{github_download.rb → github_clone.rb} +8 -8
  36. data/lib/chef/knife/github_compare.rb +3 -4
  37. data/lib/chef/knife/github_deploy.rb +89 -67
  38. data/lib/chef/knife/github_diff.rb +50 -20
  39. data/lib/chef/knife/github_list.rb +1 -1
  40. data/lib/knife-github/version.rb +1 -1
  41. metadata +32 -3
@@ -84,7 +84,7 @@ class Chef
84
84
  repos = all_repos
85
85
  end
86
86
 
87
- columns = [ 'name,Name', 'git_url,Link' ]
87
+ columns = [ 'name,Chef Store', 'git_url,Github Store' ]
88
88
 
89
89
  if repos.nil? || repos.empty?
90
90
  Chef::Log.error("No repositories found.")
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Github
3
- VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-github
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-28 00:00:00.000000000 Z
12
+ date: 2013-10-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mixlib-versioning
@@ -36,17 +36,45 @@ extra_rdoc_files:
36
36
  - LICENSE
37
37
  files:
38
38
  - .gitignore
39
+ - .yardopts
39
40
  - LICENSE
40
41
  - README.md
41
42
  - Rakefile
43
+ - doc/Chef.html
44
+ - doc/Chef/Knife.html
45
+ - doc/Chef/Knife/GithubBase.html
46
+ - doc/Chef/Knife/GithubBaseList.html
47
+ - doc/Chef/Knife/GithubClone.html
48
+ - doc/Chef/Knife/GithubCompare.html
49
+ - doc/Chef/Knife/GithubDeploy.html
50
+ - doc/Chef/Knife/GithubDiff.html
51
+ - doc/Chef/Knife/GithubList.html
52
+ - doc/KnifeGithubCleanup.html
53
+ - doc/KnifeGithubCleanup/GithubCleanup.html
54
+ - doc/KnifeGithubSearch.html
55
+ - doc/KnifeGithubSearch/GithubSearch.html
56
+ - doc/_index.html
57
+ - doc/class_list.html
58
+ - doc/css/common.css
59
+ - doc/css/full_list.css
60
+ - doc/css/style.css
61
+ - doc/file.README.html
62
+ - doc/file_list.html
63
+ - doc/frames.html
64
+ - doc/index.html
65
+ - doc/js/app.js
66
+ - doc/js/full_list.js
67
+ - doc/js/jquery.js
68
+ - doc/method_list.html
69
+ - doc/top-level-namespace.html
42
70
  - knife-github.gemspec
43
71
  - lib/chef/knife/github_base.rb
44
72
  - lib/chef/knife/github_baselist.rb
45
73
  - lib/chef/knife/github_cleanup.rb
74
+ - lib/chef/knife/github_clone.rb
46
75
  - lib/chef/knife/github_compare.rb
47
76
  - lib/chef/knife/github_deploy.rb
48
77
  - lib/chef/knife/github_diff.rb
49
- - lib/chef/knife/github_download.rb
50
78
  - lib/chef/knife/github_list.rb
51
79
  - lib/chef/knife/github_search.rb
52
80
  - lib/knife-github/version.rb
@@ -75,3 +103,4 @@ signing_key:
75
103
  specification_version: 3
76
104
  summary: Github interaction support for Chef's Knife Command
77
105
  test_files: []
106
+ has_rdoc: false