solve 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b23c8ac10998066c9ecea0480dfa83bc74266a20
4
+ data.tar.gz: ec933cf811cffa4abcb405ab6d9092e8a34b980b
5
+ SHA512:
6
+ metadata.gz: 4b19ad0f653833739926bd31dde7d774ff134728855ec43be35eeec4945721e798d0e75e04c28071baaacaad191f61115ffcb22623bf2140fdbba770a7e5eaec
7
+ data.tar.gz: a9bf1c0f0160e9a2d2dbe0489d25a99a7bed8df34c6d9fce67958731cb734d6427b46101f3668e84b91954edcb4ff9a6881de5252715b9b791a8d3b0b94744cd
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3-p429
1
+ 2.0.0-p247
data/README.md CHANGED
@@ -39,6 +39,6 @@ And now solve the graph with some demands
39
39
 
40
40
  ## Authors
41
41
 
42
- * [Jamie Winsor](https://github.com/reset) (<reset@riotgames.com>)
42
+ * [Jamie Winsor](https://github.com/reset) (<jamie@vialstudios.com>)
43
43
  * [Andrew Garson](andrewGarson) (<agarson@riotgames.com>)
44
44
  * [Thibaud Guillaume-Gentil](https://github.com/thibaudgg) ([@thibaudgg](http://twitter.com/thibaudgg))
@@ -204,6 +204,10 @@ module Solve
204
204
  end
205
205
  alias_method :eql?, :==
206
206
 
207
+ def inspect
208
+ "#<#{self.class.to_s} #{to_s}>"
209
+ end
210
+
207
211
  def to_s
208
212
  str = "#{operator} #{major}"
209
213
  str += ".#{minor}" if minor
@@ -1,3 +1,3 @@
1
1
  module Solve
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
data/lib/solve/version.rb CHANGED
@@ -127,7 +127,7 @@ module Solve
127
127
  end
128
128
 
129
129
  def inspect
130
- to_s
130
+ "#<#{self.class.to_s} #{to_s}>"
131
131
  end
132
132
 
133
133
  def to_s
data/solve.gemspec CHANGED
@@ -3,7 +3,7 @@ require File.expand_path('../lib/solve/gem_version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.authors = ["Jamie Winsor", "Andrew Garson", "Thibaud Guillaume-Gentil"]
6
- s.email = ["reset@riotgames.com", "agarson@riotgames.com", "thibaud@thibaud.me"]
6
+ s.email = ["jamie@vialstudios.com", "agarson@riotgames.com", "thibaud@thibaud.me"]
7
7
  s.description = %q{A Ruby version constraint solver}
8
8
  s.summary = %q{A Ruby version constraint solver implementing Semantic Versioning 2.0.0-rc.1}
9
9
  s.homepage = "https://github.com/RiotGames/solve"
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solve
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
5
- prerelease:
4
+ version: 0.6.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jamie Winsor
@@ -11,11 +10,11 @@ authors:
11
10
  autorequire:
12
11
  bindir: bin
13
12
  cert_chain: []
14
- date: 2013-06-27 00:00:00.000000000 Z
13
+ date: 2013-07-16 00:00:00.000000000 Z
15
14
  dependencies: []
16
15
  description: A Ruby version constraint solver
17
16
  email:
18
- - reset@riotgames.com
17
+ - jamie@vialstudios.com
19
18
  - agarson@riotgames.com
20
19
  - thibaud@thibaud.me
21
20
  executables: []
@@ -60,30 +59,26 @@ files:
60
59
  homepage: https://github.com/RiotGames/solve
61
60
  licenses:
62
61
  - Apache 2.0
62
+ metadata: {}
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
66
66
  - lib
67
67
  required_ruby_version: !ruby/object:Gem::Requirement
68
- none: false
69
68
  requirements:
70
- - - ! '>='
69
+ - - '>='
71
70
  - !ruby/object:Gem::Version
72
71
  version: 1.9.1
73
72
  required_rubygems_version: !ruby/object:Gem::Requirement
74
- none: false
75
73
  requirements:
76
- - - ! '>='
74
+ - - '>='
77
75
  - !ruby/object:Gem::Version
78
76
  version: '0'
79
- segments:
80
- - 0
81
- hash: 682127496261768650
82
77
  requirements: []
83
78
  rubyforge_project:
84
- rubygems_version: 1.8.23
79
+ rubygems_version: 2.0.3
85
80
  signing_key:
86
- specification_version: 3
81
+ specification_version: 4
87
82
  summary: A Ruby version constraint solver implementing Semantic Versioning 2.0.0-rc.1
88
83
  test_files:
89
84
  - spec/acceptance/solutions_spec.rb