clearcase_helper 0.4.9 → 0.4.10
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.md +4 -0
- data/lib/clearcase_helper/cli.rb +1 -1
- data/lib/clearcase_helper/version.rb +1 -1
- metadata +4 -4
data/ChangeLog.md
CHANGED
@@ -5,6 +5,10 @@ ClearCase Helper is a small command line utility to make some aspects of ClearCa
|
|
5
5
|
gem install clearcase_helper
|
6
6
|
cch help
|
7
7
|
|
8
|
+
## v0.4.10
|
9
|
+
|
10
|
+
* Fix: `cch st` should also be available as `cch status` [thx @TyMi]
|
11
|
+
|
8
12
|
## v0.4.9
|
9
13
|
|
10
14
|
* added .ccignore file support to control which files and directories should not be tracked [thx @TyMi]
|
data/lib/clearcase_helper/cli.rb
CHANGED
@@ -12,7 +12,7 @@ module ClearcaseHelper
|
|
12
12
|
view = ClearcaseHelper::View.new(path)
|
13
13
|
puts view.all_files_with_status(false, options)
|
14
14
|
end
|
15
|
-
map ['st'] => :all_files
|
15
|
+
map ['st','status'] => :all_files
|
16
16
|
|
17
17
|
desc "view_only_files [PATH]", "Shows all files that are not added to this view (unversioned files)."
|
18
18
|
def view_only_files(path='.')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clearcase_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.10
|
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: 2013-05-
|
12
|
+
date: 2013-05-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
84
|
version: '0'
|
85
85
|
segments:
|
86
86
|
- 0
|
87
|
-
hash:
|
87
|
+
hash: -4356845805738681538
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
none: false
|
90
90
|
requirements:
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
version: '0'
|
94
94
|
segments:
|
95
95
|
- 0
|
96
|
-
hash:
|
96
|
+
hash: -4356845805738681538
|
97
97
|
requirements: []
|
98
98
|
rubyforge_project:
|
99
99
|
rubygems_version: 1.8.24
|