berkshelf-envs 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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +22 -0
- data/README.md +58 -0
- data/Rakefile +1 -0
- data/berkshelf-envs.gemspec +25 -0
- data/lib/berkshelf/envs.rb +14 -0
- data/lib/berkshelf/envs/helpers.rb +47 -0
- data/lib/berkshelf/envs/version.rb +5 -0
- metadata +95 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5b86b6ea85b4069fb1ea46d1ee9a2735fe4a1184
|
4
|
+
data.tar.gz: a8d8a9016afb9140582d8d5ebaa556936f1e939f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bca3449d25e7aa5160b2ef843e59ae18b6d19ccfa2bfefd35591a64f1d9940ba93b699527806e01cb82ac17019d5166ed7eda66c48d0686ccb29f7b6078fc759
|
7
|
+
data.tar.gz: ce683f103cb2f8f4772b706f0c02c9f9ac732896026c20ebe5ae0975232a97e28a98d08a6dc3948402407ab0950d150dd3dc0e361b15fb7a5ab6157348d36507
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Denis Barishev
|
2
|
+
|
3
|
+
MIT License
|
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
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# Berkshelf::Envs
|
2
|
+
|
3
|
+
Berkshelf 3.0 envs extension.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'berkshelf-envs'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install berkshelf-envs
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Activate the extension in your `Berksfile`:
|
22
|
+
|
23
|
+
source 'https://api.berkshelf.com'
|
24
|
+
extension 'hg'
|
25
|
+
|
26
|
+
## Methods
|
27
|
+
---
|
28
|
+
### company_repo (repo_hash)
|
29
|
+
|
30
|
+
Sets the default company repository. `repo_hash` must contain only one key, value. The key is the repository type like, **:git, :path etc**. The value must be a *single-qouted* string with the `cookbook_name` variable which will be expanded during `company_cookbook` execution.
|
31
|
+
|
32
|
+
company_repo git: 'git@github.com:/myBase/#{cookbook_name}.git'
|
33
|
+
|
34
|
+
### company_cookbook (*args)
|
35
|
+
|
36
|
+
The `company_cookbook` method works the same way as the berkshelf `cookbook` method, but uses the default company repository specified by `company_repo`.
|
37
|
+
|
38
|
+
company_repo git: 'git@github.com:/myBase/#{cookbook_name}.git'
|
39
|
+
|
40
|
+
company_cookbook 'nginx' # args equal to git: 'git@github.com:/myBase/nginx.git'
|
41
|
+
|
42
|
+
company_cookbook 'runit', cookbook_name: 'chef-runit' # args equal to git: 'git@github.com:/myBase/chef-runit.git'
|
43
|
+
|
44
|
+
company_cookbook 'apache', path: '~/cookbooks/apache' # the default company repository is ignored in case another location is given
|
45
|
+
|
46
|
+
### include_berks (filepath)
|
47
|
+
|
48
|
+
Allows to split the `Berksfile` configuration into many and include them.
|
49
|
+
|
50
|
+
include_berks '../my-custom-cookbook-list'
|
51
|
+
|
52
|
+
## Contributing
|
53
|
+
|
54
|
+
1. Fork it ( http://github.com/dennybaa/berkshelf-envs/fork )
|
55
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
56
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
57
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
58
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'berkshelf/envs/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "berkshelf-envs"
|
8
|
+
spec.version = Berkshelf::Envs::VERSION
|
9
|
+
spec.authors = ["Denis Barishev"]
|
10
|
+
spec.email = ["dennybaa@gmail.com"]
|
11
|
+
spec.summary = %q{Berkshelf envs extension}
|
12
|
+
spec.description = %q{Handy extension for multi-environment usage}
|
13
|
+
spec.homepage = "https://github.com/dennybaa/berkshelf-envs"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'berkshelf', '>= 3.0.0'
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require "berkshelf/envs/version"
|
2
|
+
require "berkshelf/envs/helpers"
|
3
|
+
|
4
|
+
module Berkshelf
|
5
|
+
module Envs
|
6
|
+
|
7
|
+
# Since we don't access to the evaulauted berksfile,
|
8
|
+
# we do hack and locate object in the GC
|
9
|
+
ObjectSpace.each_object(Berkshelf::Mixin::DSLEval::CleanRoom) do |obj|
|
10
|
+
obj.extend(Berkshelf::Envs::Helpers)
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'berkshelf/errors'
|
2
|
+
|
3
|
+
module Berkshelf
|
4
|
+
module Envs
|
5
|
+
module Helpers
|
6
|
+
|
7
|
+
# Set the default company repository
|
8
|
+
def company_repo(repo_hash=nil)
|
9
|
+
if repo_hash.nil?
|
10
|
+
@company_repo ||= {}
|
11
|
+
else
|
12
|
+
if repo_hash.keys.count > 1
|
13
|
+
raise Berkshelf::ArgumentError, "company_repo expects hash with only one key value"
|
14
|
+
end
|
15
|
+
@company_repo = repo_hash
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
# Call berkshelf cookbook method using custom company repository.
|
20
|
+
# For *args see berkshelf cookbook method
|
21
|
+
def company_cookbook(*args)
|
22
|
+
options = args.last.is_a?(Hash) ? args.pop : Hash.new
|
23
|
+
name, constraint = args
|
24
|
+
id, repo = company_repo.to_a.first
|
25
|
+
locations = Berkshelf.constants.map {|c| c.to_s}.select {|c| c.end_with?("Location") }
|
26
|
+
|
27
|
+
# unless the location is explicitly specified use custom company repository
|
28
|
+
if options.keys.none? {|k| lid = k.to_s.capitalize; locations.include?("#{lid}Location") }
|
29
|
+
cookbook_name = options.delete(:cookbook_name) || name
|
30
|
+
location_hash = {id => eval(%Q("#{repo}"))}
|
31
|
+
else
|
32
|
+
location_hash = {}
|
33
|
+
end
|
34
|
+
cookbook(name, constraint, options.merge(location_hash))
|
35
|
+
end
|
36
|
+
|
37
|
+
# Eval another berksfile in the current context
|
38
|
+
def include_berks(filepath)
|
39
|
+
raise BerksfileNotFound.new(filepath) unless File.exist?(filepath)
|
40
|
+
filepath = filepath.to_s
|
41
|
+
contents = File.read(filepath)
|
42
|
+
eval(contents, binding, filepath, 1)
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: berkshelf-envs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Denis Barishev
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: berkshelf
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.5'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Handy extension for multi-environment usage
|
56
|
+
email:
|
57
|
+
- dennybaa@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- berkshelf-envs.gemspec
|
68
|
+
- lib/berkshelf/envs.rb
|
69
|
+
- lib/berkshelf/envs/helpers.rb
|
70
|
+
- lib/berkshelf/envs/version.rb
|
71
|
+
homepage: https://github.com/dennybaa/berkshelf-envs
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata: {}
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 2.2.2
|
92
|
+
signing_key:
|
93
|
+
specification_version: 4
|
94
|
+
summary: Berkshelf envs extension
|
95
|
+
test_files: []
|