cider 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/LICENSE +20 -0
  2. data/README.md +23 -0
  3. data/Rakefile +38 -0
  4. data/bin/cider +5 -0
  5. data/lib/cider.rb +2 -0
  6. metadata +86 -0
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Corey Donohoe
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ cider
2
+ =====
3
+
4
+ apple + homebrew + chef
5
+
6
+ Installing
7
+ ==========
8
+
9
+ % gem install cider
10
+ % cider init
11
+ % EDITOR="vim" EMAIL="atmos@atmos.org" FULLNAME="Corey Donohohe" cider install
12
+ (in /Users/atmos/p/smeagol)
13
+ INFO: Starting Chef Solo Run
14
+ ....
15
+
16
+ You should be in great shape for contributing to open source on a mac after that.
17
+
18
+ Developing
19
+ ==========
20
+ % gem install bundler
21
+ % bundle install
22
+ % bundle exec rake repackage
23
+ % gem push
data/Rakefile ADDED
@@ -0,0 +1,38 @@
1
+ require 'rake/gempackagetask'
2
+ require 'rubygems/specification'
3
+ require 'bundler'
4
+
5
+ GEM = "cider"
6
+ GEM_VERSION = "0.0.1"
7
+ AUTHOR = "Corey Donohoe"
8
+ EMAIL = "atmos@atmos.org"
9
+ HOMEPAGE = "http://github.com/atmos/cider"
10
+ SUMMARY = "The development environment you never wanted to manage alone"
11
+
12
+ spec = Gem::Specification.new do |s|
13
+ s.name = GEM
14
+ s.version = GEM_VERSION
15
+ s.platform = Gem::Platform::RUBY
16
+ s.has_rdoc = true
17
+ s.extra_rdoc_files = ["LICENSE"]
18
+ s.summary = SUMMARY
19
+ s.description = s.summary
20
+ s.author = AUTHOR
21
+ s.email = EMAIL
22
+ s.homepage = HOMEPAGE
23
+
24
+ bundle = Bundler::Definition.from_gemfile('Gemfile')
25
+ bundle.dependencies.each do |dep|
26
+ next unless dep.groups.include?(:runtime)
27
+ s.add_dependency(dep.name, dep.version_requirements.to_s)
28
+ end
29
+
30
+ s.bindir = "bin"
31
+ s.executables = %w( cider )
32
+ s.require_path = 'lib'
33
+ s.files = %w(LICENSE README.md Rakefile) + Dir.glob("{lib}/**/*")
34
+ end
35
+
36
+ Rake::GemPackageTask.new(spec) do |pkg|
37
+ pkg.gem_spec = spec
38
+ end
data/bin/cider ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rubygems'
4
+ require 'cider'
5
+ require 'optparse'
data/lib/cider.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Cider
2
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cider
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Corey Donohoe
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-05-22 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ prerelease: false
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 31
29
+ segments:
30
+ - 0
31
+ - 8
32
+ - 16
33
+ version: 0.8.16
34
+ requirement: *id001
35
+ type: :runtime
36
+ name: chef
37
+ description: The development environment you never wanted to manage alone
38
+ email: atmos@atmos.org
39
+ executables:
40
+ - cider
41
+ extensions: []
42
+
43
+ extra_rdoc_files:
44
+ - LICENSE
45
+ files:
46
+ - LICENSE
47
+ - README.md
48
+ - Rakefile
49
+ - lib/cider.rb
50
+ - bin/cider
51
+ has_rdoc: true
52
+ homepage: http://github.com/atmos/cider
53
+ licenses: []
54
+
55
+ post_install_message:
56
+ rdoc_options: []
57
+
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ hash: 3
66
+ segments:
67
+ - 0
68
+ version: "0"
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ hash: 3
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ requirements: []
79
+
80
+ rubyforge_project:
81
+ rubygems_version: 1.3.7
82
+ signing_key:
83
+ specification_version: 3
84
+ summary: The development environment you never wanted to manage alone
85
+ test_files: []
86
+