s3gb 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/lib/s3gb/base.rb +1 -1
- data/s3gb.gemspec +44 -0
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/lib/s3gb/base.rb
CHANGED
|
@@ -27,7 +27,7 @@ class S3gb
|
|
|
27
27
|
|
|
28
28
|
def commit_changes
|
|
29
29
|
ensure_git_repo
|
|
30
|
-
`cd #{cache_dir} && git add . && git commit -m "#{Time.now.strftime("%Y-%m-%d %H:%M:%S")}"`
|
|
30
|
+
`cd #{cache_dir} && git add . && git add -u . && git commit -m "#{Time.now.strftime("%Y-%m-%d %H:%M:%S")}"`
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
protected
|
data/s3gb.gemspec
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{s3gb}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Michael Grosser"]
|
|
12
|
+
s.date = %q{2010-06-09}
|
|
13
|
+
s.default_executable = %q{s3gb}
|
|
14
|
+
s.email = %q{grosser.michael@gmail.com}
|
|
15
|
+
s.executables = ["s3gb"]
|
|
16
|
+
s.files = [
|
|
17
|
+
".gitignore",
|
|
18
|
+
"Rakefile",
|
|
19
|
+
"Readme.md",
|
|
20
|
+
"VERSION",
|
|
21
|
+
"bin/s3gb",
|
|
22
|
+
"lib/s3gb.rb",
|
|
23
|
+
"lib/s3gb/base.rb",
|
|
24
|
+
"lib/s3gb/jgit.rb",
|
|
25
|
+
"lib/s3gb/s3fs.rb",
|
|
26
|
+
"s3gb.gemspec"
|
|
27
|
+
]
|
|
28
|
+
s.homepage = %q{http://github.com/grosser/s3gb}
|
|
29
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
30
|
+
s.require_paths = ["lib"]
|
|
31
|
+
s.rubygems_version = %q{1.3.6}
|
|
32
|
+
s.summary = %q{Backup stuff versioned in git to s3}
|
|
33
|
+
|
|
34
|
+
if s.respond_to? :specification_version then
|
|
35
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
36
|
+
s.specification_version = 3
|
|
37
|
+
|
|
38
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
39
|
+
else
|
|
40
|
+
end
|
|
41
|
+
else
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Michael Grosser
|
|
@@ -36,6 +36,7 @@ files:
|
|
|
36
36
|
- lib/s3gb/base.rb
|
|
37
37
|
- lib/s3gb/jgit.rb
|
|
38
38
|
- lib/s3gb/s3fs.rb
|
|
39
|
+
- s3gb.gemspec
|
|
39
40
|
has_rdoc: true
|
|
40
41
|
homepage: http://github.com/grosser/s3gb
|
|
41
42
|
licenses: []
|