ruby-filemagic 0.6.2-x86-mswin32-60 → 0.6.3-x86-mswin32-60

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: c352cd6752cd76eca05d8cf4c494447b51b52039
4
- data.tar.gz: f7557c4306551c7babfb1b127eb83eb144ab13e6
3
+ metadata.gz: 604cdeadc00cb17c12254bb6338e7cc608cb324a
4
+ data.tar.gz: 5e01b3eba5d45f2d2ab75923dac21373859c99b1
5
5
  SHA512:
6
- metadata.gz: 7756d9057d58af13f90da30213934e1c50d1f1ca03caedfc14ae5334d3d9b588160fd695b3ee6a9f3beff343f6b89e18fe7e1f5317f9e253e7906a0378c8f6d5
7
- data.tar.gz: 4c933189b14be01d19379c87b940338b5bb8839a319a09608d6abcf47f542ea31e722592ae90f7db07d62eda2960a735dbd50d783c60888dafc86bf1ebc0b2ce
6
+ metadata.gz: 410e24ad907fa27f6a619c10335804d7c7eea55af4150f256e3325a6a63cf017cc58ceaf963e9fbe07008cef705af24c0143ec39aa81606407bc871f944d0d6c
7
+ data.tar.gz: 8ff4edb43c95056d52a1073d509eb9d4c3d56042fc8b1f0c1b26548c30f7faefef0a203d73a12f1885b1db5de55c8edbfb9a943160ec25a86c185244b0a89284
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: x86-mswin32-60
6
6
  authors:
7
7
  - Travis Whitton
@@ -113,14 +113,13 @@ licenses:
113
113
  metadata: {}
114
114
  post_install_message: |2+
115
115
 
116
- ruby-filemagic-0.6.2 [2015-02-06]:
116
+ ruby-filemagic-0.6.3 [2015-02-06]:
117
117
 
118
- * Improved Windows support (issue #10 by Matt Hoyle).
119
- * Fixed FileMagic.path to account for missing magic file.
118
+ * Fixed build error with Clang (issue #13 by Stan Carver II).
120
119
 
121
120
  rdoc_options:
122
121
  - "--title"
123
- - ruby-filemagic Application documentation (v0.6.2)
122
+ - ruby-filemagic Application documentation (v0.6.3)
124
123
  - "--charset"
125
124
  - UTF-8
126
125
  - "--line-numbers"