arduino-library 0.5.3 → 0.5.4

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: 6691a2146d6bc9c2ab4a239df35cbe6c84bf7292
4
- data.tar.gz: e84d26718c57e606b13957df6b7af818a24a8c6b
3
+ metadata.gz: b13c0bb77eef92836434f0f7927801277926124c
4
+ data.tar.gz: 69aa853b562f3a3de88bc07860d45c528fe65796
5
5
  SHA512:
6
- metadata.gz: 64e2c1775881a54e41f4ab4a8df24e1586c5d104e252cd28464f11596746bca3daffe79b5b466174e3b88d1fbc274f5ae2768ba3499ca2aa5e5b75e8b8779ef1
7
- data.tar.gz: c64b0539981bc60d343de65db3d479da4815c8443ee532821d67f3c30b966d71722d5e0e32c61e75c21d6faabded3bd6e7d3c221815e9062b8d3063550876d42
6
+ metadata.gz: 40192fab70ac2d8c49bd8d7d7b218af42e11418a5ae9de9f01b04cd94ce6e5ae7d1521ff216589c7c9d0d914e7b1aa56fdf1be2d71e20be7a01f7c6b4b2190b3
7
+ data.tar.gz: 37a7949c486d2d89dd2b2fc78530497184dbeff796e367cc22c568bda5d418f0e65bc5c61f34db8e9e26d3a028efd5dc198b3000c2d4946655bda083f336e656
@@ -62,7 +62,7 @@ module Arduino
62
62
  when Proc
63
63
  check.call(value)
64
64
  else
65
- raise InvalidArgument, "Class #{check.class.name} is unsupported for value checks"
65
+ raise ::OptionParser::InvalidArgument, "Class #{check.class.name} is unsupported for value checks"
66
66
  end
67
67
  break unless matches
68
68
  end
@@ -1,6 +1,6 @@
1
1
  module Arduino
2
2
  module Library
3
- VERSION = '0.5.3'
3
+ VERSION = '0.5.4'
4
4
  DESCRIPTION = <<-eof
5
5
  This library provides a convenient ruby API for representation of an Arduino Library specification, including field and type validation, reading and writing the library.properties file, as well as downloading the official database of Arduino libraries, and offering a highly advanced searching functionality. This gem only offers Ruby API, but for command line usage please checkout the gem called "arli" — Arduino Library Dependency Manager that uses this library behind the scenes.
6
6
  eof
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arduino-library
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Gredeskoul
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-11-27 00:00:00.000000000 Z
11
+ date: 2017-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
233
233
  version: '0'
234
234
  requirements: []
235
235
  rubyforge_project:
236
- rubygems_version: 2.6.11
236
+ rubygems_version: 2.6.13
237
237
  signing_key:
238
238
  specification_version: 4
239
239
  summary: This library provides a convenient ruby API for representation of an Arduino