flounder 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 147eda5bed1bdaba30729f559e90632dcc127004
4
- data.tar.gz: 658f4e9765bf292d36ff6966c56679a4d4e8d20f
3
+ metadata.gz: 1d0079e5885a5d30c7aec0430fc4b1994d6cac0a
4
+ data.tar.gz: 3d8ed2252229dc46c9fa9c6007f58b328ec9713e
5
5
  SHA512:
6
- metadata.gz: 56487164cc91a3a6614f70a5a5142ad98309f2b05aef756fd192bb9c641cd32348f79be04a85ad98fa99b3f2d02ab923fdd3332390cba43235f57eb64310cc33
7
- data.tar.gz: e630f8f88801e8abee286a1ac3654f41ec7b9a5564e8168815ebd5ac9c74be54f74151005f75caf3036f92167002092d45df514b2d8aeda3ea8e2e3650739208
6
+ metadata.gz: 0744d14ea977fe104941bee73dc1def48e9c50cb3a06221297cb27addce022b975c155651df146895e9f60a62284eccf7ee1b7bd6caebbd76fb7ad246108dadd
7
+ data.tar.gz: bb0e52507c494f63eb98cba5737ad1f718874405853f0a56ca69d27ae2d85a2ab2287e136ede2d0f6aadc19d573de4a23eb7369e2b100a8c4acd48e459994a09
@@ -1,10 +1,11 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flounder (0.18.3)
4
+ flounder (0.18.1)
5
5
  aggregate (~> 0.2, >= 0.2.2)
6
6
  arel (~> 5, > 5.0.1)
7
7
  connection_pool (~> 2)
8
+ hashie (~> 3, >= 3.2)
8
9
  pg (~> 0.17)
9
10
  pg-hstore (~> 1.2, >= 1.2.0)
10
11
 
@@ -17,37 +18,20 @@ GEM
17
18
  ansi (1.4.3)
18
19
  arel (5.0.1.20140414130214)
19
20
  brass (1.2.1)
20
- connection_pool (2.0.0)
21
- diff-lcs (1.2.5)
21
+ connection_pool (2.1.0)
22
22
  facets (2.9.3)
23
- flexmock (1.3.3)
23
+ hashie (3.3.2)
24
24
  pg (0.17.1)
25
25
  pg-hstore (1.2.0)
26
26
  qed (2.9.1)
27
27
  ansi
28
28
  brass
29
29
  facets (>= 2.8)
30
- rspec (3.1.0)
31
- rspec-core (~> 3.1.0)
32
- rspec-expectations (~> 3.1.0)
33
- rspec-mocks (~> 3.1.0)
34
- rspec-core (3.1.7)
35
- rspec-support (~> 3.1.0)
36
- rspec-expectations (3.1.2)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.1.0)
39
- rspec-mocks (3.1.3)
40
- rspec-support (~> 3.1.0)
41
- rspec-support (3.1.2)
42
- ruby-prof (0.15.2)
43
30
 
44
31
  PLATFORMS
45
32
  ruby
46
33
 
47
34
  DEPENDENCIES
48
35
  ae
49
- flexmock
50
36
  flounder!
51
37
  qed
52
- rspec
53
- ruby-prof
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "flounder"
5
- s.version = '1.0.0'
5
+ s.version = '1.0.1'
6
6
  s.summary = "Flounder is a way to write SQL simply in Ruby. It deals with everything BUT object relational mapping. "
7
7
  s.email = "kaspar.schiess@technologyastronauts.ch"
8
8
  s.homepage = "https://bitbucket.org/technologyastronauts/oss_flounder"
@@ -15,8 +15,6 @@ module Flounder
15
15
  end
16
16
  end
17
17
 
18
- attr_reader :visitor
19
-
20
18
  def transaction &block
21
19
  pg.transaction(&block)
22
20
  end
@@ -205,7 +205,7 @@ module Flounder::Query
205
205
  return domain[sym] if domain.has_entity?(sym)
206
206
  return relation_entity_map[sym] if relation_entity_map.has_key?(sym)
207
207
 
208
- raise NoSuchEntity, "No such entity #{sym.inspect} either in this select statement or in the domain."
208
+ raise Flounder::NoSuchEntity, "No such entity #{sym.inspect} either in this select statement or in the domain."
209
209
  end
210
210
 
211
211
  # Follows a given relationship spec. Does NOT change anchoring.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flounder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaspar Schiess
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-12-11 00:00:00.000000000 Z
12
+ date: 2014-12-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: arel