libusb 0.6.1-x64-mingw32 → 0.6.2-x64-mingw32

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: 632d731d5aa18b3fe67e803598f2378d6b4cf933
4
- data.tar.gz: 6acd1b2c69269229111ee3e4dbc5764c2edba5a2
3
+ metadata.gz: 5fbb3e6ecfe59548ea0981313b26125c0fd399a4
4
+ data.tar.gz: 06a3c47fdcdf6aa4e1a4563117af0458f98592a3
5
5
  SHA512:
6
- metadata.gz: bed3a066e3ca9ba8e4cc6afa43a29f79e854a335a142bee97c8cbb1638b7bffbafe24d2a1dedafea33e36ab3c6368ad2605bc272602a21e29520e4865c20437a
7
- data.tar.gz: b5ffb68cd3a9efb7d1227842ff41cf85a760fdd112195ab22afd70ec24bb0a32f9795f4a3b2bd8354b8208a5a21b8432cb8dd41b0be749aa9b3bda111908adc3
6
+ metadata.gz: 69f81e2625a21d16c67c347eb0bf12e7833845aa965048dacb08d6ed277cbafc6126b4670264eead9c826738ea7929b0083cd30870ebaa6cb14dd35258cca6bb
7
+ data.tar.gz: 0fa9a1da49c577015284bf745819cf49e187620fecb764592658422f517a180bf3a096d634bd8e1211deb94059750df996b979ec40931a9f1a6a06e87553e52d
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: x64-mingw32
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