libusb 0.6.1-x86-linux → 0.6.2-x86-linux

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: 5ff4b89cdc9bbafe7bacc3dd6a868d7575d8949f
4
- data.tar.gz: 3e29491b366bf81f0646607c743567cf4f328c78
3
+ metadata.gz: f2ccf192ef5c4212ac0c90d59ae98c1ec49c2dad
4
+ data.tar.gz: 75b4290a4e2c0939c632f7eadd70ab61e18c920a
5
5
  SHA512:
6
- metadata.gz: 20cccbae192521aca6c42756302e7f356a84e8a93d5503bab33af34650f92870012d71165f854ce9dd4bfb1490038511fcf4cb8b8f87f6c81a481ec46f6d7cfd
7
- data.tar.gz: 2b7143b58f11c6891f2c35d38800f9c4c228210d783dd88fcfffef0b9cdf771700636af1c416c4b88a6ad0127c99e6174c9be7317ce39ad80eae70b0e162194e
6
+ metadata.gz: 5ad45d8f4e97666f10538c1e11c09055cd8e8549b04a7e6283eac0ac8de3be3cefa8d7b9b9382c14e0ad34d558e011c580de8cf2727de7b24c8cd86b779acbd7
7
+ data.tar.gz: c1dadb69e7b67dcf7d6ad35b8aeb94baf18dcacbc3d2cb1a49ab3489cac52fda13cbf68dc2dbbc52c5f2a7078063946e2899ee708fac242f93e743903d265dd6
data/Gemfile CHANGED
@@ -8,4 +8,4 @@ group :test do
8
8
  gem 'minitest'
9
9
  end
10
10
 
11
- gem 'rake-compiler-dock', git: 'http://github.com/rake-compiler/rake-compiler-dock'
11
+ gem 'rake-compiler-dock', '~> 0.6.0'
data/History.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.6.2 / 2017-01-13
2
+ ------------------
3
+ * Fix windows DLL loading bugs #22 and #23.
4
+
1
5
  0.6.1 / 2016-12-18
2
6
  ------------------
3
7
  * Fix installation of bundled libusb library in source gem.
@@ -89,6 +89,7 @@ module LIBUSB
89
89
  self.recipe = LIBUSB::LibusbRecipe.new
90
90
  recipe.host = host_platform
91
91
  recipe.configure_options << "--host=#{recipe.host}"
92
+ recipe.configure_options << "CC=#{recipe.host}-gcc -static-libgcc" if recipe.host =~ /mingw/
92
93
  self.libusb_dll = Pathname.new(recipe.path) + libusb_dllname
93
94
 
94
95
  file libusb_dll do
@@ -15,5 +15,5 @@
15
15
 
16
16
  module LIBUSB
17
17
  # Library version of libusb for Ruby
18
- VERSION = "0.6.1"
18
+ VERSION = "0.6.2"
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libusb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Lars Kanis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-18 00:00:00.000000000 Z
11
+ date: 2017-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  version: '0'
146
146
  requirements: []
147
147
  rubyforge_project:
148
- rubygems_version: 2.5.2
148
+ rubygems_version: 2.6.8
149
149
  signing_key:
150
150
  specification_version: 4
151
151
  summary: Access USB devices from Ruby via libusb-1.0