mysql_incremental_query 0.0.1 → 0.0.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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/lib/mysql_incremental_query.rb +2 -2
  3. metadata +1 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -2,13 +2,13 @@ class Mysql
2
2
  def incremental_query(query, &block)
3
3
  result = nil;
4
4
  def result.free;end
5
+ qwr = self.query_with_result
5
6
  begin
6
- qwr = self.query_with_result
7
7
  self.query_with_result = false
8
8
  result = self.query(query).use_result
9
9
  result.each { |row| yield(row) }
10
- self.query_with_result = qwr
11
10
  ensure
11
+ self.query_with_result = qwr
12
12
  result.free
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mysql_incremental_query
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Burke Libbey