chicken_soup 0.0.1
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.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +24 -0
- data/Rakefile +2 -0
- data/chicken_soup.gemspec +37 -0
- data/lib/chicken_soup/version.rb +3 -0
- data/lib/chicken_soup.rb +3 -0
- metadata +119 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
(The MIT License)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2011 The Kompanee - Jeff Felchner
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Chicken Soup... for the Deployment Soul
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
TODO
|
|
5
|
+
|
|
6
|
+
Issues
|
|
7
|
+
------
|
|
8
|
+
|
|
9
|
+
If you have problems, please create a [Github issue](https://github.com/jfelchner/chicken_soup/issues).
|
|
10
|
+
|
|
11
|
+
Credits
|
|
12
|
+
-------
|
|
13
|
+
|
|
14
|
+

|
|
15
|
+
|
|
16
|
+
chicken_soup is maintained by [The Kompanee, Ltd.](http://www.thekompanee.com)
|
|
17
|
+
|
|
18
|
+
The names and logos for The Kompanee are trademarks of The Kompanee, Ltd.
|
|
19
|
+
|
|
20
|
+
License
|
|
21
|
+
-------
|
|
22
|
+
|
|
23
|
+
chicken_soup is Copyright © 2011 The Kompanee. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|
|
24
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "chicken_soup/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.rubygems_version = '1.4.2'
|
|
7
|
+
|
|
8
|
+
s.name = "chicken_soup"
|
|
9
|
+
s.rubyforge_project = "chicken_soup"
|
|
10
|
+
|
|
11
|
+
s.version = ChickenSoup::VERSION
|
|
12
|
+
s.platform = Gem::Platform::RUBY
|
|
13
|
+
|
|
14
|
+
s.authors = ["thekompanee", "jfelchner"]
|
|
15
|
+
s.email = 'support@thekompanee.com'
|
|
16
|
+
s.homepage = 'http://github.com/jfelchner/chicken_soup'
|
|
17
|
+
|
|
18
|
+
s.summary = "chicken_soup-#{ChickenSoup::VERSION}"
|
|
19
|
+
s.description = %q[...for the Deployment Soul. Why do you keep typing all that crap into your Capistrano recipes? Are you too cool for standards? Well, ARE YA!?]
|
|
20
|
+
|
|
21
|
+
s.rdoc_options = ["--charset = UTF-8"]
|
|
22
|
+
s.extra_rdoc_files = %w[README.md LICENSE]
|
|
23
|
+
|
|
24
|
+
#= Manifest =#
|
|
25
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
26
|
+
s.files = `git ls-files`.split("\n")
|
|
27
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
28
|
+
s.require_paths = ["lib"]
|
|
29
|
+
#= Manifest =#
|
|
30
|
+
|
|
31
|
+
s.add_dependency('capistrano', '~> 3.0.3')
|
|
32
|
+
|
|
33
|
+
s.add_development_dependency('bundler', '~> 1.0.10')
|
|
34
|
+
s.add_development_dependency('rspec', '~> 2.4')
|
|
35
|
+
s.add_development_dependency('rake', '~> 0.8.7')
|
|
36
|
+
s.add_development_dependency('simplecov', '~> 0.3.9')
|
|
37
|
+
end
|
data/lib/chicken_soup.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: chicken_soup
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.1
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- thekompanee
|
|
9
|
+
- jfelchner
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
|
|
14
|
+
date: 2011-02-22 00:00:00 -06:00
|
|
15
|
+
default_executable:
|
|
16
|
+
dependencies:
|
|
17
|
+
- !ruby/object:Gem::Dependency
|
|
18
|
+
name: capistrano
|
|
19
|
+
prerelease: false
|
|
20
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
21
|
+
none: false
|
|
22
|
+
requirements:
|
|
23
|
+
- - ~>
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 3.0.3
|
|
26
|
+
type: :runtime
|
|
27
|
+
version_requirements: *id001
|
|
28
|
+
- !ruby/object:Gem::Dependency
|
|
29
|
+
name: bundler
|
|
30
|
+
prerelease: false
|
|
31
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
32
|
+
none: false
|
|
33
|
+
requirements:
|
|
34
|
+
- - ~>
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 1.0.10
|
|
37
|
+
type: :development
|
|
38
|
+
version_requirements: *id002
|
|
39
|
+
- !ruby/object:Gem::Dependency
|
|
40
|
+
name: rspec
|
|
41
|
+
prerelease: false
|
|
42
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
44
|
+
requirements:
|
|
45
|
+
- - ~>
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: "2.4"
|
|
48
|
+
type: :development
|
|
49
|
+
version_requirements: *id003
|
|
50
|
+
- !ruby/object:Gem::Dependency
|
|
51
|
+
name: rake
|
|
52
|
+
prerelease: false
|
|
53
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
54
|
+
none: false
|
|
55
|
+
requirements:
|
|
56
|
+
- - ~>
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: 0.8.7
|
|
59
|
+
type: :development
|
|
60
|
+
version_requirements: *id004
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: simplecov
|
|
63
|
+
prerelease: false
|
|
64
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ~>
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 0.3.9
|
|
70
|
+
type: :development
|
|
71
|
+
version_requirements: *id005
|
|
72
|
+
description: ...for the Deployment Soul. Why do you keep typing all that crap into your Capistrano recipes? Are you too cool for standards? Well, ARE YA!?
|
|
73
|
+
email: support@thekompanee.com
|
|
74
|
+
executables: []
|
|
75
|
+
|
|
76
|
+
extensions: []
|
|
77
|
+
|
|
78
|
+
extra_rdoc_files:
|
|
79
|
+
- README.md
|
|
80
|
+
- LICENSE
|
|
81
|
+
files:
|
|
82
|
+
- .gitignore
|
|
83
|
+
- Gemfile
|
|
84
|
+
- LICENSE
|
|
85
|
+
- README.md
|
|
86
|
+
- Rakefile
|
|
87
|
+
- chicken_soup.gemspec
|
|
88
|
+
- lib/chicken_soup.rb
|
|
89
|
+
- lib/chicken_soup/version.rb
|
|
90
|
+
has_rdoc: true
|
|
91
|
+
homepage: http://github.com/jfelchner/chicken_soup
|
|
92
|
+
licenses: []
|
|
93
|
+
|
|
94
|
+
post_install_message:
|
|
95
|
+
rdoc_options:
|
|
96
|
+
- --charset = UTF-8
|
|
97
|
+
require_paths:
|
|
98
|
+
- lib
|
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
100
|
+
none: false
|
|
101
|
+
requirements:
|
|
102
|
+
- - ">="
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: "0"
|
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
|
+
none: false
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: "0"
|
|
111
|
+
requirements: []
|
|
112
|
+
|
|
113
|
+
rubyforge_project: chicken_soup
|
|
114
|
+
rubygems_version: 1.5.0
|
|
115
|
+
signing_key:
|
|
116
|
+
specification_version: 3
|
|
117
|
+
summary: chicken_soup-0.0.1
|
|
118
|
+
test_files: []
|
|
119
|
+
|