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 CHANGED
@@ -1 +1 @@
1
- 0.1.0
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, Cloudsync::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.0"
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
@@ -1,7 +1,6 @@
1
1
  $:.unshift(File.dirname(__FILE__))
2
2
 
3
3
  require "cloudsync/sync_manager"
4
- require "cloudsync/version"
5
4
  require "cloudsync/file"
6
5
  require "cloudsync/backend/base"
7
6
  require "cloudsync/backend/cloudfiles"
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: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
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
@@ -1,3 +0,0 @@
1
- module Cloudsync
2
- VERSION = "0.1"
3
- end