solve 0.8.1 → 0.8.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01bb98e6648417d1174cc6af160fd6b50dc3607e
4
- data.tar.gz: 924eb163e9684733fd2e1b15437eb72b9dfd29ee
3
+ metadata.gz: b0d32f1998f6ba4ceabff84d83a11c7505aa276b
4
+ data.tar.gz: 0df2526224af83a576fe981eebb44554ce982817
5
5
  SHA512:
6
- metadata.gz: f56c29b39057df6d4e5c8a7ac298166cac1c97bef6daff5b19d756abe67e0a22bc17b108783e430b294e423976e606c527f794aa5b5c68de4ce7dc2eb204dc62
7
- data.tar.gz: cc8561780e6f8ae46194f18adbad60799635e739d94b7606cbe22499eba534cff3cea9b2d319d506a247e886365f90773410d0f98b68d60aa28c75c527901010
6
+ metadata.gz: b2333d4f5015046efa4c2513c52ce05d9342430010bd361602797e22f10e2a790c6b69caafbdbab6022f429aeefe374e7d3e3059e7083f5a5619eeefea0fa2c5
7
+ data.tar.gz: 6d17efaaa7bfec9b40cf6afab111bb93f66fe91479402736ef454c2b3066d10cd41fa07c74defe13c74dcfb562c513b1ec55f0f30dfee6228182e6d4a366398a
data/Guardfile CHANGED
@@ -9,7 +9,7 @@ guard 'yard', port: 8809, stdout: '/dev/null', stderr: '/dev/null' do
9
9
  watch(%r{ext/.+\.c})
10
10
  end
11
11
 
12
- guard 'rspec', version: 2, cli: "--color --drb --drb-port 8991 --format Fuubar", all_on_start: false, all_after_pass: false, notification: false do
12
+ guard 'rspec', cli: "--color --drb --drb-port 8991 --format Fuubar", all_on_start: false, all_after_pass: false, notification: false do
13
13
  watch(%r{^spec/acceptance/.+_spec\.rb$})
14
14
  watch(%r{^spec/unit/.+_spec\.rb$})
15
15
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Solve
2
2
  [![Gem Version](https://badge.fury.io/rb/solve.png)](http://badge.fury.io/rb/solve)
3
- [![Build Status](https://secure.travis-ci.org/RiotGames/solve.png?branch=master)](http://travis-ci.org/RiotGames/solve)
4
- [![Dependency Status](https://gemnasium.com/RiotGames/solve.png?travis)](https://gemnasium.com/RiotGames/solve)
3
+ [![Build Status](https://secure.travis-ci.org/berkshelf/solve.png?branch=master)](http://travis-ci.org/berkshelf/solve)
5
4
 
6
5
  A Ruby versioning constraint solver implementing [Semantic Versioning 2.0.0](http://semver.org).
7
6
 
@@ -1,3 +1,3 @@
1
1
  module Solve
2
- VERSION = "0.8.1"
2
+ VERSION = "0.8.2"
3
3
  end
@@ -40,7 +40,7 @@ module Solve
40
40
 
41
41
  def solution(solution)
42
42
  say("Found Solution")
43
- say(solution)
43
+ say(solution.inspect)
44
44
  end
45
45
 
46
46
  def add_constraint(dependency, source)
data/solve.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
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
- s.homepage = "https://github.com/RiotGames/solve"
9
+ s.homepage = "https://github.com/berkshelf/solve"
10
10
  s.license = "Apache 2.0"
11
11
 
12
12
  s.files = `git ls-files`.split($\)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solve
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamie Winsor
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-08-28 00:00:00.000000000 Z
13
+ date: 2013-11-29 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: A Ruby version constraint solver
16
16
  email:
@@ -59,7 +59,7 @@ files:
59
59
  - spec/unit/solve/solver_spec.rb
60
60
  - spec/unit/solve/version_spec.rb
61
61
  - spec/unit/solve_spec.rb
62
- homepage: https://github.com/RiotGames/solve
62
+ homepage: https://github.com/berkshelf/solve
63
63
  licenses:
64
64
  - Apache 2.0
65
65
  metadata: {}
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  version: '0'
80
80
  requirements: []
81
81
  rubyforge_project:
82
- rubygems_version: 2.0.3
82
+ rubygems_version: 2.0.7
83
83
  signing_key:
84
84
  specification_version: 4
85
85
  summary: A Ruby version constraint solver implementing Semantic Versioning 2.0.0-rc.1