silo 0.1.3 → 0.1.4
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/Changelog.md +9 -0
- data/bin/silo +2 -2
- data/lib/silo/version.rb +2 -2
- data/silo.gemspec +4 -3
- metadata +7 -8
- data/Gemfile.lock +0 -30
data/Changelog.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Version 0.1.4
|
|
4
|
+
|
|
5
|
+
**March 31<sup>st</sup>, 2012**
|
|
6
|
+
|
|
7
|
+
* Fixed gem not installing the executable
|
|
8
|
+
|
|
9
|
+
See the [Git history](https://github.com/koraktor/silo/compare/0.1.3...0.1.4)
|
|
10
|
+
for version 0.1.4
|
|
11
|
+
|
|
3
12
|
## Version 0.1.3
|
|
4
13
|
|
|
5
14
|
**September 21<sup>st</sup>, 2011**
|
data/bin/silo
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
#
|
|
6
6
|
# Copyright (c) 2010-2011, Sebastian Staudt
|
|
7
7
|
|
|
8
|
-
require File.join(File.dirname(__FILE__), '..', 'lib', 'silo')
|
|
9
|
-
require File.join(File.dirname(__FILE__), '..', '..', 'rubikon', 'lib', 'rubikon')
|
|
8
|
+
#require File.join(File.dirname(__FILE__), '..', 'lib', 'silo')
|
|
9
|
+
#require File.join(File.dirname(__FILE__), '..', '..', 'rubikon', 'lib', 'rubikon')
|
|
10
10
|
require 'silo/cli'
|
data/lib/silo/version.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# This code is free software; you can redistribute it and/or modify it under
|
|
2
2
|
# the terms of the new BSD License.
|
|
3
3
|
#
|
|
4
|
-
# Copyright (c) 2010-
|
|
4
|
+
# Copyright (c) 2010-2012, Sebastian Staudt
|
|
5
5
|
|
|
6
6
|
module Silo
|
|
7
7
|
|
|
8
8
|
# The current version of the Silo gem
|
|
9
|
-
VERSION = '0.1.
|
|
9
|
+
VERSION = '0.1.4' unless const_defined? :VERSION
|
|
10
10
|
|
|
11
11
|
end
|
data/silo.gemspec
CHANGED
|
@@ -21,7 +21,8 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
|
|
22
22
|
s.requirements = [ 'git >= 1.6' ]
|
|
23
23
|
|
|
24
|
-
s.
|
|
25
|
-
s.
|
|
26
|
-
s.
|
|
24
|
+
s.executables = [ 'silo' ]
|
|
25
|
+
s.files = `git ls-files`.split("\n")
|
|
26
|
+
s.test_files = `git ls-files -- test/test_*.rb`.split("\n")
|
|
27
|
+
s.require_paths = [ 'lib' ]
|
|
27
28
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: silo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.1.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Sebastian Staudt
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2012-03-31 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: grit
|
|
@@ -116,8 +116,8 @@ dependencies:
|
|
|
116
116
|
description: With Silo you can backup arbitrary files into one or more Git repositories and take advantage of Git's compression, speed and other features. No Git knowledge needed.
|
|
117
117
|
email:
|
|
118
118
|
- koraktor@gmail.com
|
|
119
|
-
executables:
|
|
120
|
-
|
|
119
|
+
executables:
|
|
120
|
+
- silo
|
|
121
121
|
extensions: []
|
|
122
122
|
|
|
123
123
|
extra_rdoc_files: []
|
|
@@ -128,7 +128,6 @@ files:
|
|
|
128
128
|
- .yardopts
|
|
129
129
|
- Changelog.md
|
|
130
130
|
- Gemfile
|
|
131
|
-
- Gemfile.lock
|
|
132
131
|
- LICENSE
|
|
133
132
|
- README.md
|
|
134
133
|
- Rakefile
|
|
@@ -178,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
177
|
requirements:
|
|
179
178
|
- git >= 1.6
|
|
180
179
|
rubyforge_project:
|
|
181
|
-
rubygems_version: 1.8.
|
|
180
|
+
rubygems_version: 1.8.17
|
|
182
181
|
signing_key:
|
|
183
182
|
specification_version: 3
|
|
184
183
|
summary: A command-line utility and API for Git-based backups
|
data/Gemfile.lock
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
silo (0.1.2)
|
|
5
|
-
grit (~> 2.4.1)
|
|
6
|
-
hashery (~> 1.4.0)
|
|
7
|
-
rubikon (~> 0.6.0)
|
|
8
|
-
|
|
9
|
-
GEM
|
|
10
|
-
remote: http://rubygems.org/
|
|
11
|
-
specs:
|
|
12
|
-
diff-lcs (1.1.3)
|
|
13
|
-
grit (2.4.1)
|
|
14
|
-
diff-lcs (~> 1.1)
|
|
15
|
-
mime-types (~> 1.15)
|
|
16
|
-
hashery (1.4.0)
|
|
17
|
-
mime-types (1.16)
|
|
18
|
-
rake (0.9.2)
|
|
19
|
-
rubikon (0.6.0)
|
|
20
|
-
shoulda (2.11.3)
|
|
21
|
-
yard (0.7.2)
|
|
22
|
-
|
|
23
|
-
PLATFORMS
|
|
24
|
-
ruby
|
|
25
|
-
|
|
26
|
-
DEPENDENCIES
|
|
27
|
-
rake (~> 0.9.2)
|
|
28
|
-
shoulda (~> 2.11.3)
|
|
29
|
-
silo!
|
|
30
|
-
yard (~> 0.7.2)
|