gitbak 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --markup markdown
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  Date : 2013-01-03
6
6
 
7
7
  Copyright : Copyright (C) 2013 Felix C. Stegerman
8
- Version : v0.4.0
8
+ Version : v0.4.1
9
9
 
10
10
  <!-- }}}1 -->
11
11
 
data/gitbak.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ require File.expand_path('../lib/gitbak/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'gitbak'
5
+ s.homepage = 'https://github.com/obfusk/gitbak'
6
+ s.summary = 'bitbucket/github/gist backup'
7
+
8
+ s.description = <<-END.gsub(/^ {4}/, '')
9
+ GitBak mirrors Bitbucket/GitHub/Gist repositories; paths, users,
10
+ and authentication are specified in ~/.gitbak.
11
+
12
+ When run, gitbak:
13
+
14
+ * asks for unspecified passwords;
15
+ * lists repositories using APIs - authenticating if necessary;
16
+ * clones/updates repositories;
17
+ * shows a summary (if verbose)
18
+ END
19
+
20
+ s.version = GitBak::VERSION
21
+ s.date = GitBak::DATE
22
+
23
+ s.authors = [ 'Felix C. Stegerman' ]
24
+ s.email = %w{ flx@obfusk.net }
25
+
26
+ s.license = 'GPLv2'
27
+
28
+ s.executables = %w{ gitbak }
29
+ s.files = %w{ .yardopts README.md bin/gitbak gitbak.gemspec }\
30
+ + Dir['lib/**/*.rb']
31
+
32
+ s.add_runtime_dependency 'json'
33
+
34
+ s.required_ruby_version = '>= 1.9.1'
35
+ end
@@ -1,6 +1,6 @@
1
1
  module GitBak
2
2
  # version and ...
3
- VERSION = '0.4.0'
3
+ VERSION = '0.4.1'
4
4
 
5
5
  # ... date (for gemspec) ;-)
6
6
  DATE = '2013-01-03'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitbak
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2013-01-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
16
- requirement: &8112480 !ruby/object:Gem::Requirement
16
+ requirement: &9839200 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *8112480
24
+ version_requirements: *9839200
25
25
  description: ! 'GitBak mirrors Bitbucket/GitHub/Gist repositories; paths, users,
26
26
 
27
27
  and authentication are specified in ~/.gitbak.
@@ -46,8 +46,10 @@ executables:
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - .yardopts
49
50
  - README.md
50
51
  - bin/gitbak
52
+ - gitbak.gemspec
51
53
  - lib/gitbak/exec.rb
52
54
  - lib/gitbak/config.rb
53
55
  - lib/gitbak/version.rb