shuttle-deploy 0.2.0.beta15 → 0.2.0.beta16
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 +2 -2
- data/lib/shuttle/deployment/wordpress.rb +1 -1
- data/lib/shuttle/version.rb +1 -1
- data/spec/spec_helper.rb +5 -3
- metadata +3 -5
- data/.magnum.yml +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 935833d3ec183ec62ac3ce2f023d25a1cc12cb4b
|
|
4
|
+
data.tar.gz: c4ee22275df09e9db470392fd47167a36801d0e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d34bb688fc45fadf16979843f927fe1d65a7cedf48ee1bf081cdf49f0fa7cd935b72bb4eb319165c5b335ce8d92f4be767226bd9727e8f1e88adef6cdd50a11
|
|
7
|
+
data.tar.gz: 109edb51c04f23de43ce1ee7d3f7df1927734fee738f1124f228638a14eac01f7a1fd607076d9968f36bc182e74509554a2696bbfc97b79124fde1b3468c6dc6
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Shuttle
|
|
1
|
+
# Shuttle
|
|
2
2
|
|
|
3
3
|
Shuttle is a minimalistic application deployment tool designed for small applications
|
|
4
4
|
and one-server deployments. Configuration is stored as YAML-encoded file, no need to use ruby code.
|
|
5
5
|
Operations are performed on SSH connection with target server.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
data/lib/shuttle/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
require
|
|
1
|
+
require "simplecov"
|
|
2
|
+
|
|
2
3
|
SimpleCov.start do
|
|
3
|
-
add_filter "
|
|
4
|
+
add_filter "spec/"
|
|
5
|
+
add_filter ".bundle"
|
|
4
6
|
end
|
|
5
7
|
|
|
6
8
|
$:.unshift File.expand_path("../..", __FILE__)
|
|
7
9
|
|
|
8
|
-
require
|
|
10
|
+
require "lib/shuttle"
|
|
9
11
|
|
|
10
12
|
def fixture_path(filename=nil)
|
|
11
13
|
path = File.expand_path("../fixtures", __FILE__)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shuttle-deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.0.
|
|
4
|
+
version: 0.2.0.beta16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Sosedoff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -159,7 +159,6 @@ extensions: []
|
|
|
159
159
|
extra_rdoc_files: []
|
|
160
160
|
files:
|
|
161
161
|
- .gitignore
|
|
162
|
-
- .magnum.yml
|
|
163
162
|
- .rspec
|
|
164
163
|
- Gemfile
|
|
165
164
|
- LICENSE
|
|
@@ -222,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
222
221
|
version: 1.3.1
|
|
223
222
|
requirements: []
|
|
224
223
|
rubyforge_project:
|
|
225
|
-
rubygems_version: 2.0.
|
|
224
|
+
rubygems_version: 2.0.3
|
|
226
225
|
signing_key:
|
|
227
226
|
specification_version: 4
|
|
228
227
|
summary: Minimalistic deployment tool
|
|
@@ -235,4 +234,3 @@ test_files:
|
|
|
235
234
|
- spec/path_helpers_spec.rb
|
|
236
235
|
- spec/spec_helper.rb
|
|
237
236
|
- spec/target_spec.rb
|
|
238
|
-
has_rdoc:
|
data/.magnum.yml
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ruby: 1.9.3
|