obazoud-git-external 0.6.0 → 0.7.0
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/README.markdown +2 -2
- data/bin/git-external +1 -1
- data/obazoud-git-external.gemspec +1 -3
- metadata +21 -41
data/README.markdown
CHANGED
@@ -5,7 +5,7 @@ attach to an specific commit
|
|
5
5
|
|
6
6
|
## Requiments
|
7
7
|
|
8
|
-
* ruby 1.8.
|
8
|
+
* ruby 1.8 or 1.9
|
9
9
|
* gem
|
10
10
|
* git
|
11
11
|
|
@@ -68,7 +68,7 @@ git external rm <path>
|
|
68
68
|
git clone git://github.com/obazoud/git-external.git
|
69
69
|
cd git-external
|
70
70
|
git checkout develop
|
71
|
-
gem build obazoud-git-external.gemspec && gem install --local obazoud-git-external-0.
|
71
|
+
gem build obazoud-git-external.gemspec && gem install --local obazoud-git-external-0.7.0.gem
|
72
72
|
</pre>
|
73
73
|
|
74
74
|
And voilà!
|
data/bin/git-external
CHANGED
@@ -62,7 +62,7 @@ $options = {}
|
|
62
62
|
def load_configuration(file)
|
63
63
|
$configurations = {}
|
64
64
|
linesExit, lines = execute('git config', ['--list', '--file', file])
|
65
|
-
lines.
|
65
|
+
lines.each_line do |line|
|
66
66
|
if line =~ /^external\.([^$]+)\.([^=]+)=(.*)$/
|
67
67
|
$configurations[$1.chomp] ||= {'revision' => false}
|
68
68
|
$configurations[$1.chomp][$2.chomp] = $3.chomp
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = 'obazoud-git-external'
|
4
|
-
s.version = '0.
|
4
|
+
s.version = '0.7.0'
|
5
5
|
s.platform = Gem::Platform::RUBY
|
6
6
|
s.authors = ['Daniel Cestari', 'Olivier Bazoud', 'Alastair Harrison']
|
7
7
|
s.email = ["olivier.bazoud@gmail.com"]
|
@@ -12,7 +12,5 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
13
13
|
s.executables = `git ls-files`.split("\n").map{|f| f[/^bin\/(.*)/, 1]}.compact
|
14
14
|
|
15
|
-
s.required_ruby_version = '~> 1.8.7'
|
16
|
-
|
17
15
|
end
|
18
16
|
|
metadata
CHANGED
@@ -1,35 +1,27 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: obazoud-git-external
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.7.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 6
|
9
|
-
- 0
|
10
|
-
version: 0.6.0
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Daniel Cestari
|
14
9
|
- Olivier Bazoud
|
15
10
|
- Alastair Harrison
|
16
11
|
autorequire:
|
17
12
|
bindir: bin
|
18
13
|
cert_chain: []
|
19
|
-
|
20
|
-
date: 2012-11-16 00:00:00 Z
|
14
|
+
date: 2012-11-23 00:00:00.000000000 Z
|
21
15
|
dependencies: []
|
22
|
-
|
23
|
-
|
24
|
-
email:
|
16
|
+
description: Extension for git which adds a command providing similar functionality
|
17
|
+
to git submodules but without attaching each module to a single version
|
18
|
+
email:
|
25
19
|
- olivier.bazoud@gmail.com
|
26
|
-
executables:
|
20
|
+
executables:
|
27
21
|
- git-external
|
28
22
|
extensions: []
|
29
|
-
|
30
23
|
extra_rdoc_files: []
|
31
|
-
|
32
|
-
files:
|
24
|
+
files:
|
33
25
|
- .gitignore
|
34
26
|
- LICENSE.txt
|
35
27
|
- README.markdown
|
@@ -38,38 +30,26 @@ files:
|
|
38
30
|
- unittest.sh
|
39
31
|
homepage: http://github.com/obazoud/git-external
|
40
32
|
licenses: []
|
41
|
-
|
42
33
|
post_install_message:
|
43
34
|
rdoc_options: []
|
44
|
-
|
45
|
-
require_paths:
|
35
|
+
require_paths:
|
46
36
|
- lib
|
47
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
38
|
none: false
|
49
|
-
requirements:
|
50
|
-
- -
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
|
53
|
-
|
54
|
-
- 1
|
55
|
-
- 8
|
56
|
-
- 7
|
57
|
-
version: 1.8.7
|
58
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ! '>='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
44
|
none: false
|
60
|
-
requirements:
|
61
|
-
- -
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
|
64
|
-
segments:
|
65
|
-
- 0
|
66
|
-
version: "0"
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
67
49
|
requirements: []
|
68
|
-
|
69
50
|
rubyforge_project:
|
70
51
|
rubygems_version: 1.8.24
|
71
52
|
signing_key:
|
72
53
|
specification_version: 3
|
73
54
|
summary: Git version of an svn:external, an alternative to Git Submodule
|
74
55
|
test_files: []
|
75
|
-
|