capistrano-rails-console 0.1.0 → 0.1.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 +4 -4
- data/README.md +9 -2
- data/capistrano-rails-console.gemspec +0 -1
- data/lib/capistrano/rails/console.rb +0 -1
- data/lib/capistrano/rails/console/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e6425b5f673bacdcbde270b1efb12dbac6e2e4a
|
4
|
+
data.tar.gz: 1d0193f843ca115cb8c6921a30b6cf13e70b1888
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 020e54ad51acdb54bbbc08955e992eca357f3cd1a1f7ac93a380d500dab1e9ce35831104cdb56de9a20dcfaf39c9bbfcca728b4fdb3654536f79eb39b7f2fb6f
|
7
|
+
data.tar.gz: a4932e2bdc2176b657fb6d1f2bf470926c847c37ebc42420a84c748719607c324a78e9b1e4dedee8513cce954d2403bf059cdcce1857ca0e2a5f86f563bcac1b
|
data/README.md
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
# Capistrano::Rails::Console
|
2
2
|
|
3
|
-
|
3
|
+
Remote rails console for capistrano
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
|
+
gem 'capistrano', '~> 3.0.0'
|
9
10
|
gem 'capistrano-rails-console'
|
10
11
|
|
11
12
|
And then execute:
|
@@ -18,7 +19,13 @@ Or install it yourself as:
|
|
18
19
|
|
19
20
|
## Usage
|
20
21
|
|
21
|
-
|
22
|
+
Require in `Capfile` to use the default task:
|
23
|
+
|
24
|
+
require 'capistrano/rails/console'
|
25
|
+
|
26
|
+
This will add a task `rails:console`:
|
27
|
+
|
28
|
+
$ cap production rails:console
|
22
29
|
|
23
30
|
## Contributing
|
24
31
|
|
@@ -19,7 +19,6 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
21
|
spec.add_dependency 'capistrano', '>= 3.0.0'
|
22
|
-
spec.add_dependency 'capistrano-rails', '>= 1.0.0'
|
23
22
|
|
24
23
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
25
24
|
spec.add_development_dependency 'rake'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-rails-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Schwab
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11
|
11
|
+
date: 2013-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 3.0.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: capistrano-rails
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.0.0
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - '>='
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 1.0.0
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: bundler
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|