cloudsync 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.
- data/VERSION +1 -1
- data/bin/cloudsync +1 -1
- data/cloudsync.gemspec +1 -2
- data/lib/cloudsync.rb +0 -1
- metadata +3 -4
- data/lib/cloudsync/version.rb +0 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/bin/cloudsync
CHANGED
|
@@ -4,7 +4,7 @@ require 'rubygems'
|
|
|
4
4
|
require "commander/import"
|
|
5
5
|
require "lib/cloudsync"
|
|
6
6
|
|
|
7
|
-
program :version,
|
|
7
|
+
program :version, File.read( File.expand_path(File.dirname(__FILE__) + "/../VERSION") )
|
|
8
8
|
program :description, "Sync between various backends (S3, Cloudfiles, SFTP)"
|
|
9
9
|
|
|
10
10
|
def add_sync_options(c)
|
data/cloudsync.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{cloudsync}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Cory Forsyth"]
|
|
@@ -34,7 +34,6 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
"lib/cloudsync/datetime/datetime.rb",
|
|
35
35
|
"lib/cloudsync/file.rb",
|
|
36
36
|
"lib/cloudsync/sync_manager.rb",
|
|
37
|
-
"lib/cloudsync/version.rb",
|
|
38
37
|
"test/helper.rb",
|
|
39
38
|
"test/test_cloudsync.rb"
|
|
40
39
|
]
|
data/lib/cloudsync.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudsync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Cory Forsyth
|
|
@@ -85,7 +85,6 @@ files:
|
|
|
85
85
|
- lib/cloudsync/datetime/datetime.rb
|
|
86
86
|
- lib/cloudsync/file.rb
|
|
87
87
|
- lib/cloudsync/sync_manager.rb
|
|
88
|
-
- lib/cloudsync/version.rb
|
|
89
88
|
- test/helper.rb
|
|
90
89
|
- test/test_cloudsync.rb
|
|
91
90
|
has_rdoc: true
|
data/lib/cloudsync/version.rb
DELETED