ya_queen 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/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +6 -0
- data/lib/ya_queen/base.rb +69 -0
- data/lib/ya_queen/config.rb +19 -0
- data/lib/ya_queen/version.rb +3 -0
- data/lib/ya_queen.rb +15 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/ya_queen_spec.rb +11 -0
- data/ya_queen.gemspec +24 -0
- metadata +103 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: df8bfa3a1e0a5fea0679414bdbb97118a0005787
|
4
|
+
data.tar.gz: d02621700962307b29cd7a30d662c0207c8d3887
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 926237b10640f196a0b34b1e681427aeaede00f02bc2b5ebc252d8b7fc534018ee2080af978ea2dc1b2d7aea3bc2cb69bc8d0093d2fc3babb0a856bfe57ecd3e
|
7
|
+
data.tar.gz: f914bc2d0cb96af8f7b4499f94e7020040cc59aa811ebab30043257b56c4d40854975f7959ece337dc94400814126efe2e396e5d8b2a9ddb9501af960281b1be
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Groovenauts, Inc.
|
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,29 @@
|
|
1
|
+
# YaQueen
|
2
|
+
|
3
|
+
ya_queen supports to define complicated capistrano tasks and roles
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'ya_queen'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install ya_queen
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'ya_queen'
|
3
|
+
|
4
|
+
module YaQueen
|
5
|
+
class Base
|
6
|
+
attr_reader :context, :name, :config, :root, :servers
|
7
|
+
def initialize(context, name, configs)
|
8
|
+
@context = context
|
9
|
+
@name = name
|
10
|
+
@root = configs
|
11
|
+
@config = configs[name.to_sym] || configs[name.to_s]
|
12
|
+
@servers = @config["servers"] || {}
|
13
|
+
if s = @config["server"]
|
14
|
+
@servers[s] = {}
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def method_missing(name, *args, &block)
|
19
|
+
if context.respond_to?(name)
|
20
|
+
context.send(name, *args, &block)
|
21
|
+
else
|
22
|
+
begin
|
23
|
+
context.send(name, *args, &block)
|
24
|
+
rescue NameError
|
25
|
+
super
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def define_tasks
|
31
|
+
return if servers.nil? or servers.empty?
|
32
|
+
|
33
|
+
t = self
|
34
|
+
task(:"@#{name}"){ t.define_role_task }
|
35
|
+
|
36
|
+
servers.each do |host, options|
|
37
|
+
after :"@#{name}", :"@#{name}/#{host}"
|
38
|
+
task( :"@#{name}/#{host}"){ t.define_each_task(host, options) }
|
39
|
+
after :"@#{name}/#{host}", :"@#{name}/common"
|
40
|
+
end
|
41
|
+
task(:"@#{name}/common") do
|
42
|
+
t.define_common_task
|
43
|
+
t.set_deploy_target("@#{name}")
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def role_task(&block) ; @role_task = block; end
|
48
|
+
def common_task(&block); @common_task = block; end
|
49
|
+
def each_task(&block) ; @each_task = block; end
|
50
|
+
|
51
|
+
def define_role_task ; @role_task.call if @role_task; end
|
52
|
+
def define_common_task; @common_task.call if @common_task; end
|
53
|
+
def define_each_task(host, options); @each_task.call(host, options) if @each_task; end
|
54
|
+
|
55
|
+
## デプロイ先サーバ・ディレクトリ選択時に異なる種類のデプロイ対象を選択できないようにする
|
56
|
+
## (cap vagrant @apisrv-a01 @gotool01 deploy:update などをできないようにする)
|
57
|
+
def set_deploy_target(tgt)
|
58
|
+
case selected = context.fetch(:selected_deploy_target, nil)
|
59
|
+
when nil
|
60
|
+
context.set :selected_deploy_target, tgt
|
61
|
+
when tgt
|
62
|
+
# OK, do nothing
|
63
|
+
else
|
64
|
+
raise "already selected deploy target: #{selected}"
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'ya_queen'
|
2
|
+
|
3
|
+
module YaQueen
|
4
|
+
class Config
|
5
|
+
def initialize(context, path)
|
6
|
+
@configs = YAML.load_file(path)
|
7
|
+
@context = context
|
8
|
+
end
|
9
|
+
|
10
|
+
def define_server_tasks(name, options = {})
|
11
|
+
config = @configs[name]
|
12
|
+
klass = options[:class] || Base
|
13
|
+
t = klass.new(@context, name, @configs)
|
14
|
+
yield(t, config) if block_given?
|
15
|
+
t.define_tasks
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
data/lib/ya_queen.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require "ya_queen/version"
|
2
|
+
|
3
|
+
module YaQueen
|
4
|
+
autoload :Config, "ya_queen/config"
|
5
|
+
autoload :Base, "ya_queen/base"
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def configure(context, path)
|
9
|
+
config = self.new(context, path)
|
10
|
+
yield(config) if block_given?
|
11
|
+
config
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/ya_queen.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ya_queen/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ya_queen"
|
8
|
+
spec.version = YaQueen::VERSION
|
9
|
+
spec.authors = ["akima"]
|
10
|
+
spec.email = ["akima@groovenauts.jp"]
|
11
|
+
spec.description = %q{ya_queen supports to define complicated capistrano tasks and roles}
|
12
|
+
spec.summary = %q{ya_queen supports to define complicated capistrano tasks and roles}
|
13
|
+
spec.homepage = "https://github.com/groovenauts/ya_queen"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
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_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ya_queen
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- akima
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
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: ya_queen supports to define complicated capistrano tasks and roles
|
56
|
+
email:
|
57
|
+
- akima@groovenauts.jp
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- .rspec
|
64
|
+
- .travis.yml
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- lib/ya_queen.rb
|
70
|
+
- lib/ya_queen/base.rb
|
71
|
+
- lib/ya_queen/config.rb
|
72
|
+
- lib/ya_queen/version.rb
|
73
|
+
- spec/spec_helper.rb
|
74
|
+
- spec/ya_queen_spec.rb
|
75
|
+
- ya_queen.gemspec
|
76
|
+
homepage: https://github.com/groovenauts/ya_queen
|
77
|
+
licenses:
|
78
|
+
- MIT
|
79
|
+
metadata: {}
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 2.0.3
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: ya_queen supports to define complicated capistrano tasks and roles
|
100
|
+
test_files:
|
101
|
+
- spec/spec_helper.rb
|
102
|
+
- spec/ya_queen_spec.rb
|
103
|
+
has_rdoc:
|