esr-rim 1.3.1 → 1.3.2

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.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- N2NkZDZjMGM5MmViZTZjYzdmY2Y1NDU2NTk0NWU5MGZjZGY4N2E0Yw==
5
- data.tar.gz: !binary |-
6
- N2I0ZTgwMThkMjk0MDFiNGI1NzBkOGJhNDEzYTc4NjFkOWExM2NlMw==
2
+ SHA1:
3
+ metadata.gz: 00bcab56723db9e64aeec8bcf239ee0bac0625a1
4
+ data.tar.gz: 03b7d077b4c2a6b9c3b53893460af1d785fa520a
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MDgxMTYzMTU2ZjdiMTZiMjU5YjljNTM1NGFjZTRjNDE2YTI0N2ExYzZhMGZl
10
- NGZkODZjM2Q3MTdiOGI5NmE2OTkzOTk3NzQzNDFiMTQ3ZmEwMDIwMDk4MDYz
11
- ZWYxNjkwNzNhYTlmYmE1OGQzZDlmNDFmOWQ2NWVmYjhkYzdhNjg=
12
- data.tar.gz: !binary |-
13
- ZDFiY2Q0YmNlMTE1NDFmN2IyNWQ0YjkzNzk2MDA5MjMxOTQ5OGU2ZTM3Yjdj
14
- ZjdlOTczOGM5ZWU1ODVlZGNhY2JjYmEyNzE0NTU1ZWYzZWY0ODE3YWYwZjI2
15
- ZmRhZmJiMmQyYTI3ZGVjOTk4NmM5MzM2NmY4NjhiMDViNTAxYmE=
6
+ metadata.gz: 0cf6eefa5594007e15d8af10e47d9d3513a6643caaf9669729cdfd57926da08e9f5f6b1449f1b3c40e0fc3d3157aab9e00c08b7bfd3f8485b75094e44f0f14ba
7
+ data.tar.gz: 081d40058f79b2da0cda5ec5aac1229bc0b70b1b45eab92bf189ff755e10869ca22468091fc96921711b81beb9f464a40e3a12b2978cd1b2da9cee4a4b8c43d1
data/CHANGELOG CHANGED
@@ -85,3 +85,7 @@
85
85
 
86
86
  * fixed sync with manifests and extended to support of subdirectories
87
87
 
88
+ # 1.3.2
89
+
90
+ * fixed character case related problem on windows [#13]
91
+
@@ -43,7 +43,12 @@ class SyncHelper < CommandHelper
43
43
  RIM::git_session(tmpdir) do |tmp_session|
44
44
  tmp_session.execute("git reset --hard")
45
45
  tmp_session.execute("git clean -xdf")
46
- tmp_session.execute("git checkout -B #{rim_branch} remotes/origin/#{rim_branch}")
46
+ # use -f here to prevent git checkout from checking for untracked files which might be overwritten.
47
+ # this is safe since we removed any untracked files before.
48
+ # this is a workaround for a name case problem on windows:
49
+ # if a file's name changes case between the current head and the checkout target,
50
+ # git checkout will report the file with the new name as untracked and will fail
51
+ tmp_session.execute("git checkout -B #{rim_branch} -f remotes/origin/#{rim_branch}")
47
52
  changed_modules = sync_modules(tmp_session, message)
48
53
  if !split
49
54
  tmp_session.execute("git reset --soft #{branch_sha1}")
@@ -2,7 +2,7 @@ module RIM
2
2
 
3
3
  module Version
4
4
 
5
- Version = "1.3.1"
5
+ Version = "1.3.2"
6
6
 
7
7
  end
8
8
 
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esr-rim
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ESR Labs AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-28 00:00:00.000000000 Z
11
+ date: 2016-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: subcommand
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.0.6
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.0.6
27
27
  description: RIM lets you work with multiple git repositories from within one single
@@ -34,10 +34,6 @@ extra_rdoc_files:
34
34
  - README.md
35
35
  - CHANGELOG
36
36
  files:
37
- - CHANGELOG
38
- - README.md
39
- - Rakefile
40
- - bin/rim
41
37
  - lib/rim/command/command.rb
42
38
  - lib/rim/command/info.rb
43
39
  - lib/rim/command/status.rb
@@ -84,6 +80,10 @@ files:
84
80
  - test/unit_tests.rb
85
81
  - test/upload_helper_test.rb
86
82
  - test/upload_module_helper_test.rb
83
+ - README.md
84
+ - CHANGELOG
85
+ - Rakefile
86
+ - bin/rim
87
87
  homepage: http://esrlabs.com
88
88
  licenses: []
89
89
  metadata: {}
@@ -97,17 +97,17 @@ require_paths:
97
97
  - lib
98
98
  required_ruby_version: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ! '>='
100
+ - - '>='
101
101
  - !ruby/object:Gem::Version
102
102
  version: '0'
103
103
  required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  requirements:
105
- - - ! '>='
105
+ - - '>='
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  requirements: []
109
109
  rubyforge_project:
110
- rubygems_version: 2.4.8
110
+ rubygems_version: 2.0.3
111
111
  signing_key:
112
112
  specification_version: 4
113
113
  summary: RIM - multi git tool