tmbundle-manager 0.1.0.pre8 → 0.1.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.
- checksums.yaml +4 -4
- data/lib/tmbundle.rb +8 -0
- data/lib/tmbundle/manager/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a22bdf5fe48f431d284be7b04a93f66f527969ae
|
|
4
|
+
data.tar.gz: cb1c8f0821496dbc2fb73640cf67c47d3b23c2e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a07ae95b1457de6554b437a0e3923f73ab14019bf8da5c3344a7f26cf389a67ff44ba13ec9d11f52aa300e99efec762b597b3f60de79774329a61b7bbe19b6f
|
|
7
|
+
data.tar.gz: c2b900a0f77e4c07e8794571f5a318589d29a85b1d8155f529abeed74fc825fdad21e7ddeb2d08117cd2732c0516233f0c5e3a9e125dc61764402ab0179d3706
|
data/lib/tmbundle.rb
CHANGED
|
@@ -111,6 +111,14 @@ class TMBundle < Thor
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
+
desc 'cd PARTIAL_NAME', 'open a terminal in the bundle dir'
|
|
115
|
+
def cd(partial_name)
|
|
116
|
+
bundle = find_bundle(partial_name)
|
|
117
|
+
within bundle do
|
|
118
|
+
system 'open', bundle.path, '-a', 'Terminal.app'
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
114
122
|
|
|
115
123
|
|
|
116
124
|
private
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tmbundle-manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elia Schito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -120,12 +120,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
120
120
|
version: '0'
|
|
121
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
122
|
requirements:
|
|
123
|
-
- - "
|
|
123
|
+
- - ">="
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
|
-
version:
|
|
125
|
+
version: '0'
|
|
126
126
|
requirements: []
|
|
127
127
|
rubyforge_project:
|
|
128
|
-
rubygems_version: 2.
|
|
128
|
+
rubygems_version: 2.2.2
|
|
129
129
|
signing_key:
|
|
130
130
|
specification_version: 4
|
|
131
131
|
summary: TextMate 2 Bundle/Package Manager
|