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 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]
@@ -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=[PATTERN_LIST]", String, "Exclude all modules of a comma separated list of directories when using sync with -a option.") do |dirlist|
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=[PATTERN_LIST]", String, "Set the ignore patterns by specifying a comma separated list.") do |ignores|
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|
@@ -2,7 +2,7 @@ module RIM
2
2
 
3
3
  module Version
4
4
 
5
- Version = "1.2.0"
5
+ Version = "1.2.1"
6
6
 
7
7
  end
8
8
 
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.0
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-18 00:00:00.000000000 Z
12
+ date: 2015-09-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: subcommand