goat 0.3.4 → 0.3.5

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.
@@ -239,7 +239,7 @@ module Goat
239
239
  cur = c[:version]
240
240
  chsrv_id = c[:chsrv]
241
241
  txn_ups = @registry.page_updates(pgid)
242
- txn_ups = txn_ups.size > 5 ? txn_ups[-5..-1] : txn_ups
242
+ #txn_ups = txn_ups.size > 5 ? txn_ups[-5..-1] : txn_ups
243
243
  ups = txn_ups.map{|x| x[:ups]}.flatten
244
244
  vers = {}
245
245
  txn_ups.each {|txn_up| txn_up[:ups].each{|up| vers[up.version] = txn_up[:txn]}}
@@ -1,6 +1,6 @@
1
1
  spec = Gem::Specification.new do |s|
2
2
  s.name = 'goat'
3
- s.version = '0.3.4'
3
+ s.version = '0.3.5'
4
4
  s.summary = 'Pre-release beta version of Goat'
5
5
  s.author = 'Patrick Collison'
6
6
  s.email = 'patrick@collison.ie'
@@ -19,7 +19,6 @@ module Log
19
19
  end
20
20
  end
21
21
 
22
- def log(lvl, msg, tmsg=nil); Log.log(lvl, msg, tmsg); end
23
22
  def logd(msg); log(:debug, msg); end
24
23
  def logw(msg); log(:warn, msg); end
25
24
  def loge(msg); log(:error, msg); end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: goat
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 4
10
- version: 0.3.4
9
+ - 5
10
+ version: 0.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Patrick Collison