lita-espn-fantasy-football 0.3.1 → 0.3.2

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: f0a5b9285fea6fea23bc7e7353d59b5fb5695133
4
- data.tar.gz: 94c9778c18c61d2f55e9ffa65adc66711b364ee8
3
+ metadata.gz: 2f088a8806af8d7d4a7c30a3088ac55bf76ca81e
4
+ data.tar.gz: 8f117b5d941e0ac0e28c01e579fbe3a1f9c8cd4b
5
5
  SHA512:
6
- metadata.gz: bef03585984ae25e0e3bd5fcb8e57679c391e9606288c8f259d1bd81e00ed8c285c68c000cbda23b9d59ccac5e82040a8b1aa2bd858920bfd71ae67554e15fa7
7
- data.tar.gz: 20fa6562c1f3a9c50fadbd02efbc6d8e3cb30c06ff7742a67751a3a3b167492fb66620ff416bb7dae3b30a46a09726465d55ff3f72b2ce8fe72feeef56d2ca66
6
+ metadata.gz: 87bc09e8efd823d0ec45a6ad02f4cec0adc9cf019384d6575b6710a378867193cdd973fdb57ed27d3d1c6a8efe94b4a9590b841a1a36f401c53d08bd38af126d
7
+ data.tar.gz: 524075e9d54783851320fc9f88dec27eb9924519f55f6bcc16dee43622ca3ab8c3cbe5ff49c9b2ec28a11de5c6d30af14cdef9f2bc3172dea2e3faf45d2ff7cf
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2017-09-06 02:31:11 -0500 using RuboCop version 0.49.1.
3
+ # on 2017-09-06 11:34:06 -0500 using RuboCop version 0.49.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -13,7 +13,7 @@ Lint/UselessAssignment:
13
13
 
14
14
  # Offense count: 5
15
15
  Metrics/AbcSize:
16
- Max: 69
16
+ Max: 70
17
17
 
18
18
  # Offense count: 2
19
19
  # Configuration parameters: CountComments, ExcludedMethods.
@@ -273,7 +273,8 @@ module Lita
273
273
  redis.set('espn_fantasy_football_last_activity', timestamp.to_s) if timestamp > latest_activity
274
274
  end
275
275
 
276
- resp
276
+ # events are latest-first on espn, but we want to post earliest-first
277
+ resp.reverse
277
278
  end
278
279
 
279
280
  def format_results(raw)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'lita-espn-fantasy-football'
3
- s.version = '0.3.1'
3
+ s.version = '0.3.2'
4
4
  s.authors = ['Kevin Reedy', 'Miles Evenson']
5
5
  s.email = ['kevinreedy@gmail.com', 'miles.evenson@gmail.com']
6
6
  s.description = 'Lita handler for ESPN Fantasy Football'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-espn-fantasy-football
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Reedy