amigo 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ === 0.1.3 / 2010-05-23
2
+
3
+ * Fixed: weird 1.9 scoping behaviour.
4
+
1
5
  === 0.1.2 / 2010-05-17
2
6
 
3
7
  * Fixed: Inadvertently reported select variables to be bound even if they weren't in the solution.
@@ -20,7 +20,7 @@ module Amigo
20
20
 
21
21
  def where(subject, predicate, object)
22
22
  transform {
23
- @where_clauses = @where_clauses.cons(Where.new(subject, predicate, object))
23
+ @where_clauses = @where_clauses.cons(Amigo::Where.new(subject, predicate, object))
24
24
  }
25
25
  end
26
26
 
@@ -1,5 +1,5 @@
1
1
  module Amigo
2
2
 
3
- VERSION = "0.1.2".freeze
3
+ VERSION = "0.1.3".freeze
4
4
 
5
5
  end
@@ -1,2 +1 @@
1
1
  # Common spec-related code goes here
2
- require 'rubygems' unless defined?(Gem)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amigo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Simon Harris
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-05-17 00:00:00 +10:00
18
+ date: 2010-05-23 00:00:00 +10:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency