semi_semantic 1.1.0 → 1.2.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 28944605baa420b95bc02119d4b0db7d5b61a236
4
+ data.tar.gz: dfe61aba132d5e101c536be08475efe56d2533f0
5
+ SHA512:
6
+ metadata.gz: d2fd0656a97c1c4262cf6dd4571f2aec25d06a377249565b4d7a83335a69a0324e3dfe31bad79d5533e6cf0b1af7a4fb11498569bb89908c21938faf82e14ee8
7
+ data.tar.gz: e547628ae6a77133c26fcec0ca03383b0cbdc622010e736c95c05657ded3664bc0871999ed93e17c7f0e36d0098feb24ea5d3493f051e114b921870307af8ef6
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  semi-semantic
2
2
  =============
3
3
 
4
+ [![Build Status](https://travis-ci.org/pivotal-cf-experimental/semi_semantic.svg?branch=master)](https://travis-ci.org/pivotal-cf-experimental/semi_semantic)
5
+
4
6
  A Ruby library for parsing/formatting/comparing semi-semantic versions.
5
7
 
6
8
  ### Why not just use Semantic Versioning?
@@ -39,6 +39,7 @@ module SemiSemantic
39
39
  end
40
40
 
41
41
  def <=>(other)
42
+ return nil if other.nil?
42
43
  a = @components
43
44
  b = other.components
44
45
  if a.size > b.size
metadata CHANGED
@@ -1,36 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semi_semantic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
5
- prerelease:
4
+ version: 1.2.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Pivotal
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-05-28 00:00:00.000000000 Z
11
+ date: 2016-04-19 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rspec
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: 3.0.0.rc
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: 3.0.0.rc
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rspec-legacy_formatters
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - '='
36
32
  - !ruby/object:Gem::Version
@@ -38,46 +34,44 @@ dependencies:
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - '='
44
39
  - !ruby/object:Gem::Version
45
40
  version: 1.0.0.rc1
46
- description: ! 'Semi Semantic
47
-
48
- ca37a8'
41
+ description: |-
42
+ Semi Semantic
43
+ d6001f
49
44
  email: support@cloudfoundry.com
50
45
  executables: []
51
46
  extensions: []
52
47
  extra_rdoc_files: []
53
48
  files:
49
+ - README.md
54
50
  - lib/semi_semantic/parse_error.rb
55
51
  - lib/semi_semantic/version.rb
56
52
  - lib/semi_semantic/version_segment.rb
57
- - README.md
58
53
  homepage: https://github.com/pivotal-cf-experimental/semi_semantic
59
54
  licenses:
60
55
  - Apache 2.0
56
+ metadata: {}
61
57
  post_install_message:
62
58
  rdoc_options: []
63
59
  require_paths:
64
60
  - lib
65
61
  required_ruby_version: !ruby/object:Gem::Requirement
66
- none: false
67
62
  requirements:
68
- - - ! '>='
63
+ - - ">="
69
64
  - !ruby/object:Gem::Version
70
65
  version: 1.9.3
71
66
  required_rubygems_version: !ruby/object:Gem::Requirement
72
- none: false
73
67
  requirements:
74
- - - ! '>='
68
+ - - ">="
75
69
  - !ruby/object:Gem::Version
76
70
  version: '0'
77
71
  requirements: []
78
72
  rubyforge_project:
79
- rubygems_version: 1.8.23
73
+ rubygems_version: 2.2.5
80
74
  signing_key:
81
- specification_version: 3
75
+ specification_version: 4
82
76
  summary: Semi Semantic
83
77
  test_files: []