esr-rim 1.2.0 → 1.2.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/CHANGELOG +4 -0
- data/lib/rim/command/sync.rb +2 -2
- data/lib/rim/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -67,3 +67,7 @@
|
|
67
67
|
* added -a option to allow simple specification of multiple syncs.
|
68
68
|
* added -r option that allows sync and rebase in one step [BS-319]
|
69
69
|
* fixed exception in rim sync when -u option is not provided [BS-232]
|
70
|
+
|
71
|
+
# 1.2.1
|
72
|
+
|
73
|
+
* fixed -i option not working as expected in rim sync [#6]
|
data/lib/rim/command/sync.rb
CHANGED
@@ -27,7 +27,7 @@ class Sync < Command
|
|
27
27
|
opts.on("-a", "--all", "Collects all modules from the specified paths.") do
|
28
28
|
@all = true
|
29
29
|
end
|
30
|
-
opts.on("-e", "--exclude
|
30
|
+
opts.on("-e", "--exclude PATTERN_LIST", String, "Exclude all modules of a comma separated list of directories when using sync with -a option.") do |dirlist|
|
31
31
|
@excludedirs = dirlist.split(",")
|
32
32
|
end
|
33
33
|
@module_options = {}
|
@@ -38,7 +38,7 @@ class Sync < Command
|
|
38
38
|
opts.on("-r", "--target-revision REVISION", String, "Set the target revision of the module.") do |target_revision|
|
39
39
|
@module_options[:target_revision] = target_revision
|
40
40
|
end
|
41
|
-
opts.on("-i", "--ignore
|
41
|
+
opts.on("-i", "--ignore PATTERN_LIST", String, "Set the ignore patterns by specifying a comma separated list.") do |ignores|
|
42
42
|
@module_options[:ignores] = ignores || ""
|
43
43
|
end
|
44
44
|
opts.on("-m", "--message MESSAGE", String, "Message header to provide to each commit.") do |message|
|
data/lib/rim/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: esr-rim
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-09-
|
12
|
+
date: 2015-09-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: subcommand
|