mixlib-cli 1.0.4 → 1.1.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.
@@ -0,0 +1,6 @@
1
+ *.sw?
2
+ .DS_Store
3
+ mixlib-cli.gemspec
4
+ coverage
5
+ rdoc
6
+ pkg
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 it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
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'
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
- :minor: 0
4
- :patch: 4
3
+ :minor: 1
4
+ :patch: 0
@@ -0,0 +1,9 @@
1
+ Feature: something something
2
+ In order to something something
3
+ A user something something
4
+ something something something
5
+
6
+ Scenario: something something
7
+ Given inspiration
8
+ When I create a sweet new gem
9
+ Then everyone should see how awesome I am
@@ -0,0 +1,9 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../../lib')
2
+ require 'mixlib_cli'
3
+
4
+ require 'spec/expectations'
5
+
6
+ World do |world|
7
+
8
+ world
9
+ end
@@ -0,0 +1,4 @@
1
+ --colour
2
+ --format specdoc
3
+ --loadby mtime
4
+ --reverse
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
- version: 1.0.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: 2009-05-12 00:00:00 +12:00
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.5
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