mediawiki-butt 1.1.0 → 1.1.1

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/lib/mediawiki/butt.rb +2 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f401612e4a15f409ee096a93af7db54d7b1a622
4
- data.tar.gz: 95f0582b2eb5c83c84ed37c911e2b17ae3f1684a
3
+ metadata.gz: d607878d899519bb2780c1e1b22e704d42e84ee0
4
+ data.tar.gz: c9e1672f535750b5c9cee2f1922f8c9fadf6a912
5
5
  SHA512:
6
- metadata.gz: 74a04d30b93a548662119f85118ba0b6261e7b8ed4bab1d57db7e8b0303cdee2e19d4b23548c9a5d499a4e16dde1554e37855b68a542ff5e70028f27063d1251
7
- data.tar.gz: 4eaaa0362c1620c9e62c928f8d7916c204514b4b6ef745b12555cfdd6a20f1eda21f4a603cbbabb6b3618fe77a19958fc483cd82ed86b2d3235e2ec017986404
6
+ metadata.gz: 5aff5ca892a0cad1a9db8a532d90117dbb7183487a0c1f326a223c295900147eae00d3f1f173d3157faed57054de8a67e4a1622fcbfa3f185c8b0806e97d5dd8
7
+ data.tar.gz: a1cc08cc6e86caeda0cf63b7f7179e224511ad5012b972bb4cf3b7b217974678081b1a5b1018fd664a2270718081512eb55b061dac579359b461735a0ee7ef41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
  ## Version 1
3
+ ### Version 1.1.1
4
+ * Fix query methods throwing NoMethodErrors.
5
+
3
6
  ### Version 1.1.0
4
7
  * Support for the continuation API (Issue #9 and PR #47)
5
8
 
@@ -79,7 +79,8 @@ module MediaWiki
79
79
  loop do
80
80
  result = post(params)
81
81
  yield(base_return, result['query']) if result.key?('query')
82
- break unless @use_continuation || result.key?('continue')
82
+ break unless @use_continuation
83
+ break unless result.key?('continue')
83
84
  continue = result['continue']
84
85
  continue.each do |key, val|
85
86
  params[key.to_sym] = val
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mediawiki-butt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eli Foster
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-26 00:00:00.000000000 Z
12
+ date: 2016-08-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httpclient