mixlib-cli 1.0.4 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/NOTICE +27 -0
- data/Rakefile +2 -1
- data/VERSION.yml +2 -2
- data/features/mixlib_cli.feature +9 -0
- data/features/step_definitions/mixlib_cli_steps.rb +0 -0
- data/features/support/env.rb +9 -0
- data/spec/spec.opts +4 -0
- metadata +18 -5
data/.gitignore
ADDED
data/NOTICE
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Mixin::CLI NOTICE
|
2
|
+
=================
|
3
|
+
|
4
|
+
Developed at Opscode (http://www.opscode.com).
|
5
|
+
|
6
|
+
* Copyright 2009, Opscode, Inc. <legal@opscode.com>
|
7
|
+
|
8
|
+
Mixin::CLI incorporates code from Chef. The Chef notice file follows:
|
9
|
+
|
10
|
+
Chef NOTICE
|
11
|
+
===========
|
12
|
+
|
13
|
+
Developed at Opscode (http://www.opscode.com).
|
14
|
+
|
15
|
+
Contributors and Copyright holders:
|
16
|
+
|
17
|
+
* Copyright 2008, Adam Jacob <adam@opscode.com>
|
18
|
+
* Copyright 2008, Arjuna Christensen <aj@hjksolutions.com>
|
19
|
+
* Copyright 2008, Bryan McLellan <btm@loftninjas.org>
|
20
|
+
* Copyright 2008, Ezra Zygmuntowicz <ezra@engineyard.com>
|
21
|
+
* Copyright 2009, Sean Cribbs <seancribbs@gmail.com>
|
22
|
+
* Copyright 2009, Christopher Brown <cb@opscode.com>
|
23
|
+
* Copyright 2009, Thom May <thom@clearairturbulence.org>
|
24
|
+
|
25
|
+
Chef incorporates code modified from Open4 (http://www.codeforpeople.com/lib/ruby/open4/), which was written by Ara T. Howard.
|
26
|
+
|
27
|
+
Chef incorporates code modified from Merb (http://www.merbivore.com), which is Copyright (c) 2008 Engine Yard.
|
data/Rakefile
CHANGED
@@ -10,8 +10,9 @@ begin
|
|
10
10
|
gem.homepage = "http://www.opscode.com"
|
11
11
|
gem.authors = ["Opscode, Inc."]
|
12
12
|
end
|
13
|
+
Jeweler::GemcutterTasks.new
|
13
14
|
rescue LoadError
|
14
|
-
puts "Jeweler not available. Install
|
15
|
+
puts "Jeweler (or a dependency) not available. Install from gemcutter with: sudo gem install gemcutter jeweler"
|
15
16
|
end
|
16
17
|
|
17
18
|
require 'spec/rake/spectask'
|
data/VERSION.yml
CHANGED
File without changes
|
data/spec/spec.opts
ADDED
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixlib-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 1.1.0
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Opscode, Inc.
|
@@ -9,7 +14,7 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date:
|
17
|
+
date: 2010-02-28 00:00:00 -08:00
|
13
18
|
default_executable:
|
14
19
|
dependencies: []
|
15
20
|
|
@@ -23,12 +28,18 @@ extra_rdoc_files:
|
|
23
28
|
- LICENSE
|
24
29
|
- README.rdoc
|
25
30
|
files:
|
31
|
+
- .gitignore
|
26
32
|
- LICENSE
|
33
|
+
- NOTICE
|
27
34
|
- README.rdoc
|
28
35
|
- Rakefile
|
29
36
|
- VERSION.yml
|
37
|
+
- features/mixlib_cli.feature
|
38
|
+
- features/step_definitions/mixlib_cli_steps.rb
|
39
|
+
- features/support/env.rb
|
30
40
|
- lib/mixlib/cli.rb
|
31
41
|
- spec/mixlib/cli_spec.rb
|
42
|
+
- spec/spec.opts
|
32
43
|
- spec/spec_helper.rb
|
33
44
|
has_rdoc: true
|
34
45
|
homepage: http://www.opscode.com
|
@@ -43,18 +54,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
54
|
requirements:
|
44
55
|
- - ">="
|
45
56
|
- !ruby/object:Gem::Version
|
57
|
+
segments:
|
58
|
+
- 0
|
46
59
|
version: "0"
|
47
|
-
version:
|
48
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
61
|
requirements:
|
50
62
|
- - ">="
|
51
63
|
- !ruby/object:Gem::Version
|
64
|
+
segments:
|
65
|
+
- 0
|
52
66
|
version: "0"
|
53
|
-
version:
|
54
67
|
requirements: []
|
55
68
|
|
56
69
|
rubyforge_project:
|
57
|
-
rubygems_version: 1.3.
|
70
|
+
rubygems_version: 1.3.6
|
58
71
|
signing_key:
|
59
72
|
specification_version: 3
|
60
73
|
summary: A simple mixin for CLI interfaces, including option parsing
|