capistrano-templates 0.1.0 → 0.2.0
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/README.rdoc +9 -2
- data/VERSION +1 -1
- data/capistrano-templates.gemspec +3 -3
- data/lib/{template.rb → captify_template.rb} +0 -0
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -9,7 +9,7 @@ For bundler, add this to your Gemfile:
|
|
|
9
9
|
|
|
10
10
|
== Usage
|
|
11
11
|
cd my_project
|
|
12
|
-
captify . # use default template: rails-basic
|
|
12
|
+
bundle exec captify . # use default template: rails-basic
|
|
13
13
|
|
|
14
14
|
It will:
|
|
15
15
|
|
|
@@ -19,7 +19,14 @@ It will:
|
|
|
19
19
|
To use a different template:
|
|
20
20
|
|
|
21
21
|
cd my_project
|
|
22
|
-
|
|
22
|
+
bundle exec captify -t sinatra-basic .
|
|
23
|
+
|
|
24
|
+
=== How to load a template gem without bundler?
|
|
25
|
+
cd my_project
|
|
26
|
+
captify -g capistrano-templates -t rails-basic .
|
|
27
|
+
|
|
28
|
+
=== See also
|
|
29
|
+
captify -h
|
|
23
30
|
|
|
24
31
|
== Contributing to capistrano-templates
|
|
25
32
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "capistrano-templates"
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Huiming Teo"]
|
|
12
|
-
s.date = "2012-06-
|
|
12
|
+
s.date = "2012-06-11"
|
|
13
13
|
s.description = "A collection of commonly used Capistrano templates."
|
|
14
14
|
s.email = "teohuiming@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
"Rakefile",
|
|
26
26
|
"VERSION",
|
|
27
27
|
"capistrano-templates.gemspec",
|
|
28
|
-
"lib/
|
|
28
|
+
"lib/captify_template.rb",
|
|
29
29
|
"templates/rails-basic/config/deploy.rb",
|
|
30
30
|
"templates/rails-basic/config/deploy/production.rb",
|
|
31
31
|
"templates/rails-basic/config/deploy/staging.rb"
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-templates
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-06-
|
|
12
|
+
date: 2012-06-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -187,7 +187,7 @@ files:
|
|
|
187
187
|
- Rakefile
|
|
188
188
|
- VERSION
|
|
189
189
|
- capistrano-templates.gemspec
|
|
190
|
-
- lib/
|
|
190
|
+
- lib/captify_template.rb
|
|
191
191
|
- templates/rails-basic/config/deploy.rb
|
|
192
192
|
- templates/rails-basic/config/deploy/production.rb
|
|
193
193
|
- templates/rails-basic/config/deploy/staging.rb
|
|
@@ -206,7 +206,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
206
206
|
version: '0'
|
|
207
207
|
segments:
|
|
208
208
|
- 0
|
|
209
|
-
hash:
|
|
209
|
+
hash: 2201458630483852952
|
|
210
210
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
211
|
none: false
|
|
212
212
|
requirements:
|