papercall 0.15.1 → 0.15.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4223b3849cee0a69a2c0677e098dc7d016e66ae8
4
- data.tar.gz: ad08a64e6d76a561a9ff33c2d66c6d98b35b072b
3
+ metadata.gz: 503026b2fa1192978c604f2a765a276ba91117a9
4
+ data.tar.gz: 70775d12ead9ec79dfda71c7112fc6ae9934107d
5
5
  SHA512:
6
- metadata.gz: 4623833f9412ef964483176990951989882821dfb9781df738d646c868de0603e18037dc03688c3ce8b37c215c92137e3336bc7e4761b5357508b8ac43e77b33
7
- data.tar.gz: 9a98f7823418eb6958c61fd19c1534d7df972d4a781106eafb1c07a7db98e2f202e1fb402bc68b0498563fc654251a01e5f79d1c8d17d3505c3d4a8f16868e46
6
+ metadata.gz: 0c23285629cac49da1bae0803602ce5098361c14149ad605c77f55dd9d2de847fbf8271a10c8eb990538bf6ab1643d97f944fc0465b8216fd5f849b91d618755
7
+ data.tar.gz: 54c63f721771e54ee9dcc93cb0faf07a4ae9de35afcd0fd7486d774478d6cfb147c3f93e885e7e1ed100533958eba631b245e1979f9344cee74bb78dbdbdac83
data/.gitignore CHANGED
@@ -11,3 +11,4 @@
11
11
  /*.rb
12
12
  /*.gem
13
13
  /*.idea
14
+ /*.txt
@@ -50,7 +50,7 @@ module Papercall
50
50
  start_time = Time.now
51
51
  print 'Fetching ratings for all submissions from Papercall API...'
52
52
 
53
- Parallel.each(analysis, in_threads: 8) do |submission|
53
+ Parallel.each(analysis, in_threads: 32) do |submission|
54
54
  unless submission['ratings']
55
55
  ratings_url = "#{SUBMISSIONS_URL}/#{submission['id']}/ratings"
56
56
  submission['ratings'] = papercall(ratings_url)
@@ -63,7 +63,7 @@ module Papercall
63
63
  def fetch_feedback
64
64
  start_time = Time.now
65
65
  print 'Fetching feedback for all submissions from Papercall API...'
66
- Parallel.each(analysis, in_threads: 8) do |submission|
66
+ Parallel.each(analysis, in_threads: 32) do |submission|
67
67
  unless submission['feedback']
68
68
  feedback_url = "#{SUBMISSIONS_URL}/#{submission['id']}/feedback"
69
69
  submission['feedback'] = papercall(feedback_url)
@@ -1,3 +1,3 @@
1
1
  module Papercall
2
- VERSION = '0.15.1'.freeze
2
+ VERSION = '0.15.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: papercall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jørn Ølmheim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-23 00:00:00.000000000 Z
11
+ date: 2018-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler