leehambley-railsless-deploy 0.0.12 → 0.0.13
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/CHANGELOG.markdown +17 -0
- data/README.markdown +30 -0
- metadata +3 -1
data/CHANGELOG.markdown
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# Lee Hambley's Railsless Deploy
|
2
|
+
|
3
|
+
## 0.0.13
|
4
|
+
|
5
|
+
* Fixes a README problem and includes the README and CHANGELOG in the gem.
|
6
|
+
|
7
|
+
## 0.0.12
|
8
|
+
|
9
|
+
* Trivial documentation changes
|
10
|
+
|
11
|
+
## 0.0.11
|
12
|
+
|
13
|
+
* Gemspec changed to run under SAFE=3 mode
|
14
|
+
|
15
|
+
## 0.0.10
|
16
|
+
|
17
|
+
* Initial release, GitHub gem enabled.
|
data/README.markdown
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Lee Hambley's Railsless Deploy
|
2
|
+
|
3
|
+
If you want to get the most out of Capistrano and you do not want to have to deal with the *railsisms* that ship by default, this is the gem for you.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
# gem sources -a http://gems.github.com/
|
8
|
+
# gem install leehambley-railsless-deploy
|
9
|
+
|
10
|
+
## Usage
|
11
|
+
|
12
|
+
Open your application's `Capfile` and replace the following:
|
13
|
+
|
14
|
+
load 'deploy'
|
15
|
+
|
16
|
+
With these three lines:
|
17
|
+
|
18
|
+
require 'rubygems'
|
19
|
+
require 'railsless-deploy'
|
20
|
+
load 'config/deploy'
|
21
|
+
|
22
|
+
You should then be able to proceed as you would usually, you may want to familiarise yourself with the truncated list of tasks, you can get a full list with:
|
23
|
+
|
24
|
+
$ cap -T
|
25
|
+
|
26
|
+
## Bugs & Feedback
|
27
|
+
|
28
|
+
Via my Github profile please:
|
29
|
+
|
30
|
+
http://github.com/leehambley
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: leehambley-railsless-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lee Hambley
|
@@ -23,6 +23,8 @@ extra_rdoc_files: []
|
|
23
23
|
|
24
24
|
files:
|
25
25
|
- lib/railsless-deploy.rb
|
26
|
+
- README.markdown
|
27
|
+
- CHANGELOG.markdown
|
26
28
|
has_rdoc: false
|
27
29
|
homepage: http://lee.hambley.name/
|
28
30
|
post_install_message:
|