colorful-mina 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +1 -0
- data/.travis.yml +21 -0
- data/CONTRIBUTING.md +124 -0
- data/Gemfile +10 -0
- data/HISTORY.md +348 -0
- data/LICENSE +23 -0
- data/Makefile +29 -0
- data/Notes.md +70 -0
- data/README.md +1015 -0
- data/Rakefile +20 -0
- data/bin/mina +65 -0
- data/data/deploy.rb +80 -0
- data/data/deploy.sh.erb +106 -0
- data/lib/mina.rb +23 -0
- data/lib/mina/bundler.rb +49 -0
- data/lib/mina/chruby.rb +49 -0
- data/lib/mina/default.rb +145 -0
- data/lib/mina/deploy.rb +138 -0
- data/lib/mina/deploy_helpers.rb +34 -0
- data/lib/mina/exec_helpers.rb +111 -0
- data/lib/mina/foreman.rb +82 -0
- data/lib/mina/git.rb +62 -0
- data/lib/mina/helpers.rb +386 -0
- data/lib/mina/output_helpers.rb +95 -0
- data/lib/mina/rails.rb +206 -0
- data/lib/mina/rake.rb +9 -0
- data/lib/mina/rbenv.rb +47 -0
- data/lib/mina/rvm.rb +88 -0
- data/lib/mina/settings.rb +32 -0
- data/lib/mina/ssh_helpers.rb +123 -0
- data/lib/mina/tools.rb +20 -0
- data/lib/mina/version.rb +5 -0
- data/lib/mina/whenever.rb +27 -0
- data/manual/index.md +15 -0
- data/manual/modules.md +2 -0
- data/mina.gemspec +17 -0
- data/spec/command_helper.rb +52 -0
- data/spec/commands/cleanup_spec.rb +16 -0
- data/spec/commands/command_spec.rb +71 -0
- data/spec/commands/custom_config_spec.rb +20 -0
- data/spec/commands/deploy_spec.rb +36 -0
- data/spec/commands/outside_project_spec.rb +35 -0
- data/spec/commands/real_deploy_spec.rb +53 -0
- data/spec/commands/ssh_spec.rb +14 -0
- data/spec/commands/verbose_spec.rb +21 -0
- data/spec/dsl/invoke_spec.rb +48 -0
- data/spec/dsl/queue_spec.rb +49 -0
- data/spec/dsl/settings_in_rake_spec.rb +39 -0
- data/spec/dsl/settings_spec.rb +61 -0
- data/spec/dsl/to_spec.rb +20 -0
- data/spec/fixtures/custom_file_env/custom_deploy.rb +15 -0
- data/spec/fixtures/empty_env/config/deploy.rb +15 -0
- data/spec/helpers/exec_helper_spec.rb +19 -0
- data/spec/helpers/output_helper_spec.rb +24 -0
- data/spec/spec_helper.rb +27 -0
- data/support/Readme-footer.md +32 -0
- data/support/Readme-header.md +16 -0
- data/support/guide.md +297 -0
- data/support/index.html +53 -0
- data/support/to_md.rb +11 -0
- data/test_env/config/deploy.rb +69 -0
- metadata +150 -0
metadata
ADDED
@@ -0,0 +1,150 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: colorful-mina
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rico Sta. Cruz
|
8
|
+
- Michael Galero
|
9
|
+
- Weverton Timoteo
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2015-01-26 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - ">="
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '0'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: open4
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 1.3.4
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.3.4
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: rspec
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 3.0.0
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 3.0.0
|
57
|
+
description: Really fast deployer and server automation tool.
|
58
|
+
email:
|
59
|
+
- weverton.ct@gmail.com
|
60
|
+
executables:
|
61
|
+
- mina
|
62
|
+
extensions: []
|
63
|
+
extra_rdoc_files: []
|
64
|
+
files:
|
65
|
+
- ".gitignore"
|
66
|
+
- ".rspec"
|
67
|
+
- ".travis.yml"
|
68
|
+
- CONTRIBUTING.md
|
69
|
+
- Gemfile
|
70
|
+
- HISTORY.md
|
71
|
+
- LICENSE
|
72
|
+
- Makefile
|
73
|
+
- Notes.md
|
74
|
+
- README.md
|
75
|
+
- Rakefile
|
76
|
+
- bin/mina
|
77
|
+
- data/deploy.rb
|
78
|
+
- data/deploy.sh.erb
|
79
|
+
- lib/mina.rb
|
80
|
+
- lib/mina/bundler.rb
|
81
|
+
- lib/mina/chruby.rb
|
82
|
+
- lib/mina/default.rb
|
83
|
+
- lib/mina/deploy.rb
|
84
|
+
- lib/mina/deploy_helpers.rb
|
85
|
+
- lib/mina/exec_helpers.rb
|
86
|
+
- lib/mina/foreman.rb
|
87
|
+
- lib/mina/git.rb
|
88
|
+
- lib/mina/helpers.rb
|
89
|
+
- lib/mina/output_helpers.rb
|
90
|
+
- lib/mina/rails.rb
|
91
|
+
- lib/mina/rake.rb
|
92
|
+
- lib/mina/rbenv.rb
|
93
|
+
- lib/mina/rvm.rb
|
94
|
+
- lib/mina/settings.rb
|
95
|
+
- lib/mina/ssh_helpers.rb
|
96
|
+
- lib/mina/tools.rb
|
97
|
+
- lib/mina/version.rb
|
98
|
+
- lib/mina/whenever.rb
|
99
|
+
- manual/index.md
|
100
|
+
- manual/modules.md
|
101
|
+
- mina.gemspec
|
102
|
+
- spec/command_helper.rb
|
103
|
+
- spec/commands/cleanup_spec.rb
|
104
|
+
- spec/commands/command_spec.rb
|
105
|
+
- spec/commands/custom_config_spec.rb
|
106
|
+
- spec/commands/deploy_spec.rb
|
107
|
+
- spec/commands/outside_project_spec.rb
|
108
|
+
- spec/commands/real_deploy_spec.rb
|
109
|
+
- spec/commands/ssh_spec.rb
|
110
|
+
- spec/commands/verbose_spec.rb
|
111
|
+
- spec/dsl/invoke_spec.rb
|
112
|
+
- spec/dsl/queue_spec.rb
|
113
|
+
- spec/dsl/settings_in_rake_spec.rb
|
114
|
+
- spec/dsl/settings_spec.rb
|
115
|
+
- spec/dsl/to_spec.rb
|
116
|
+
- spec/fixtures/custom_file_env/custom_deploy.rb
|
117
|
+
- spec/fixtures/empty_env/config/deploy.rb
|
118
|
+
- spec/helpers/exec_helper_spec.rb
|
119
|
+
- spec/helpers/output_helper_spec.rb
|
120
|
+
- spec/spec_helper.rb
|
121
|
+
- support/Readme-footer.md
|
122
|
+
- support/Readme-header.md
|
123
|
+
- support/guide.md
|
124
|
+
- support/index.html
|
125
|
+
- support/to_md.rb
|
126
|
+
- test_env/config/deploy.rb
|
127
|
+
homepage: http://github.com/wevtimoteo/colorful-mina
|
128
|
+
licenses: []
|
129
|
+
metadata: {}
|
130
|
+
post_install_message:
|
131
|
+
rdoc_options: []
|
132
|
+
require_paths:
|
133
|
+
- lib
|
134
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - ">="
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '0'
|
144
|
+
requirements: []
|
145
|
+
rubyforge_project:
|
146
|
+
rubygems_version: 2.4.5
|
147
|
+
signing_key:
|
148
|
+
specification_version: 4
|
149
|
+
summary: Really fast deployer and server automation tool.
|
150
|
+
test_files: []
|