tmbundle-manager 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tmbundle/bundle_name.rb +1 -1
- data/lib/tmbundle/manager/version.rb +1 -1
- data/spec/tmbundle/bundle_name_spec.rb +10 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7a2ad9ae1af79f756fa79cb8a738b87aaedb773
|
4
|
+
data.tar.gz: d69d7eb25a2e0c66a9aca347470505b0e2d188c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bce719f22413dcbe7070da9349e661ce6b700d9b3ac51e7ae2eb200f145f0f173abb809de928fea7ce79247931a31295704974c8502cdddff0dafed1e87acebd
|
7
|
+
data.tar.gz: 9d8b09475f27a1ccd55cbe39d7766838707578850d040134732a5d756bfd81413d54f78730f8515b7b140059763c0c98c02cdd241ad66dcfa198e2ada7e7b131
|
data/lib/tmbundle/bundle_name.rb
CHANGED
@@ -3,8 +3,14 @@ require 'tmbundle'
|
|
3
3
|
require 'tmbundle/bundle_name'
|
4
4
|
|
5
5
|
describe TMBundle::BundleName do
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
endings = ['-tmbundle', '.tmbundle', '']
|
7
|
+
|
8
|
+
endings.each do |ending|
|
9
|
+
context "ending in #{ending.inspect}" do
|
10
|
+
subject(:name) { described_class.new("davidrios/jade#{ending}") }
|
11
|
+
its(:name) { should eq("davidrios/jade#{ending}") }
|
12
|
+
its(:install_name) { should eq('jade.tmbundle') }
|
13
|
+
its(:git_url) { should eq("https://github.com/davidrios/jade#{ending.empty? ? '.tmbundle' : ending}.git") }
|
14
|
+
end
|
15
|
+
end
|
10
16
|
end
|
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.
|
4
|
+
version: 0.1.2
|
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-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
128
|
rubyforge_project:
|
129
|
-
rubygems_version: 2.
|
129
|
+
rubygems_version: 2.4.2
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: TextMate 2 Bundle/Package Manager
|