volley 0.1.14 → 0.1.15

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 CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.1.14:
4
+ * update descriptor to support project@branch:5005-1
5
+
3
6
  ## v0.1.13:
4
7
  * exit with errors for unknown exceptions
5
8
 
@@ -40,7 +40,7 @@ module Volley
40
40
  def valid?(desc)
41
41
  return false if desc.nil? || desc.blank?
42
42
  list = desc.split(/[\@\:\.\/\\\-]/)
43
- return false if (list.count < 2 || list.count > 3)
43
+ return false if (list.count < 2 || list.count > 4)
44
44
  true
45
45
  end
46
46
  end
@@ -3,7 +3,7 @@ unless defined?(Volley::Version)
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 14
6
+ TINY = 15
7
7
  TAG = nil
8
8
  STRING = [MAJOR, MINOR, TINY, TAG].compact.join('.')
9
9
  end
@@ -16,6 +16,7 @@ describe Volley::Descriptor do
16
16
  ].each do |a|
17
17
  (desc, project, branch, version) = a
18
18
  it "should handle format: '#{desc}'" do
19
+ expect(Volley::Descriptor.valid?(desc)).to be(true)
19
20
  d = Volley::Descriptor.new(desc)
20
21
  expect(d).not_to be(nil)
21
22
  expect(d.project).to eq(project)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: volley
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -215,7 +215,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
215
215
  version: '0'
216
216
  segments:
217
217
  - 0
218
- hash: 3417145727278252107
218
+ hash: -1870677156941386299
219
219
  required_rubygems_version: !ruby/object:Gem::Requirement
220
220
  none: false
221
221
  requirements:
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
224
  version: '0'
225
225
  segments:
226
226
  - 0
227
- hash: 3417145727278252107
227
+ hash: -1870677156941386299
228
228
  requirements: []
229
229
  rubyforge_project:
230
230
  rubygems_version: 1.8.24