ruby-filemagic 0.6.2-x86-mingw32 → 0.6.3-x86-mingw32

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: 119c4a11a9e3df55d70340d9b32ff3c508741ef0
4
- data.tar.gz: 89d8685a9ccf5762433c78b873135be2bd0af1fe
3
+ metadata.gz: d20bc1073ab09a7cc215701eb87cd7cdf643ddfa
4
+ data.tar.gz: b0a2ea38d202e2cd40aa2d0bfe53cdc40152f9e5
5
5
  SHA512:
6
- metadata.gz: 6257197e6afb3f26a54ba3045f14ffa69d549c37099dd25d03aa394831f0c5aa156038dc28302b93cae7373264e0a45382c8947835bf271fae5ad4ebca1898e7
7
- data.tar.gz: 544f82f2f42d3c337fec1bfb985f33c737697423a954790588420c3c7f0e4820a503232cef16e581c2faca684b81277be3d2d83eb2b1d6bdfeb6dc4b3e06d084
6
+ metadata.gz: d10fcb4a1c331dbbf8e3a1d2a67afea62e9f18c81fcaa67d13c4fc5090a506cdbbfef9a992f78d2f9663cbb062dd923d6b7164e66b5f77559adccc253725ed01
7
+ data.tar.gz: 8b56e5a69f7069ecf6ad46649ea842865d7810bd29562a429409ad248540db457dda4eb416702b328cca269a6ec9cb19d71a9208f5b52cba795739e9e40b0f3f
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')
Binary file
Binary file
Binary file
Binary file
@@ -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-mingw32
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"