ruby-filemagic 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d1d279fb547f7aa623c1e88e7f2f47f6e4e1861
4
- data.tar.gz: 88e3fbc28fd2ce43f1f7b7669e1ee2655359a619
3
+ metadata.gz: c40ff0bb38f52109a4cd1ae3c14307b19e78a945
4
+ data.tar.gz: ba3119c345c3a1a64624422032a8a7cad026aee9
5
5
  SHA512:
6
- metadata.gz: 3143dd206af80d9e962ce5907cc9b9d24a5ddbee25783f9621970f065b2dcf31427135261c2b09f3c734738a7e0b2f2912d39a400d528d5e12a4e6e1076c4071
7
- data.tar.gz: 0eb00059e40fd6db78d26a194f1e101b7526e194a0550d2161f90540a7bde0bcae61e3ced9db6e37b59b5226802ee092ca71022f2e7ccf36bdae6f1b7e04bac3
6
+ metadata.gz: b8f010daf0bae4d574340a8d1d55a564e21532374188e3afe117f074c942a47f6e4ce216debe1ae76b90a8d5c00c001734a2d1775967c7f88e110554a083b9b0
7
+ data.tar.gz: b362c2a4ea725dba072439238bec60c6d414e9784c128f48bef884121a2dff448ebe8d3cd6df343eabdbfa1d6688a71f311a7252f49018c2d0e9346a537e657e
data/ChangeLog CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  = Revision history for ruby-filemagic
4
4
 
5
+ == 0.6.3 [2015-02-06]
6
+
7
+ * Fixed build error with Clang (issue #13 by Stan Carver II).
8
+
5
9
  == 0.6.2 [2015-02-06]
6
10
 
7
11
  * Improved Windows support (issue #10 by Matt Hoyle).
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to filemagic version 0.6.2
5
+ This documentation refers to filemagic version 0.6.3
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -1,7 +1,7 @@
1
1
  require 'mkmf'
2
2
 
3
3
  $CFLAGS << ' -Wall' if ENV['WALL']
4
- $LDFLAGS << ' -static-libgcc'
4
+ $LDFLAGS << ' -static-libgcc' if RUBY_PLATFORM =~ /cygwin|mingw|mswin/
5
5
 
6
6
  dir_config('magic')
7
7
  dir_config('gnurx')
@@ -4,7 +4,7 @@ class FileMagic
4
4
 
5
5
  MAJOR = 0
6
6
  MINOR = 6
7
- TINY = 2
7
+ TINY = 3
8
8
 
9
9
  class << self
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-filemagic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Travis Whitton
@@ -110,14 +110,13 @@ licenses:
110
110
  metadata: {}
111
111
  post_install_message: |2+
112
112
 
113
- ruby-filemagic-0.6.2 [2015-02-06]:
113
+ ruby-filemagic-0.6.3 [2015-02-06]:
114
114
 
115
- * Improved Windows support (issue #10 by Matt Hoyle).
116
- * Fixed FileMagic.path to account for missing magic file.
115
+ * Fixed build error with Clang (issue #13 by Stan Carver II).
117
116
 
118
117
  rdoc_options:
119
118
  - "--title"
120
- - ruby-filemagic Application documentation (v0.6.2)
119
+ - ruby-filemagic Application documentation (v0.6.3)
121
120
  - "--charset"
122
121
  - UTF-8
123
122
  - "--line-numbers"