fast_xs 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +9 -8
- data/Rakefile +9 -5
- metadata +6 -5
data/History.txt
CHANGED
@@ -1,12 +1,13 @@
|
|
1
|
-
=== 0.7.
|
1
|
+
=== 0.7.2 / 2009-07-31
|
2
2
|
|
3
|
-
*
|
3
|
+
* 1 bug fix:
|
4
4
|
|
5
|
-
*
|
6
|
-
- thanks to Jesse Storimer for
|
7
|
-
* fix build on systems with poor symbol visibility
|
8
|
-
- thanks to Jeff Solomon for helping me with this
|
5
|
+
* build gem extension correctly on install
|
6
|
+
- thanks to Jesse Storimer for noticing and reporting
|
9
7
|
|
10
|
-
* 1
|
8
|
+
* 1 packaging fix:
|
11
9
|
|
12
|
-
|
10
|
+
* rake-compiler is only needed for cross compiles
|
11
|
+
|
12
|
+
Browse gitweb for full history:
|
13
|
+
http://fast-xs.rubyforge.org/git?p=fast-xs.git
|
data/Rakefile
CHANGED
@@ -1,14 +1,18 @@
|
|
1
1
|
require 'hoe'
|
2
|
-
|
3
|
-
|
4
|
-
Rake::ExtensionTask.new('fast_xs')
|
5
|
-
Rake::ExtensionTask.new('fast_xs_extra')
|
2
|
+
begin
|
3
|
+
require 'rake/extensiontask'
|
4
|
+
Rake::ExtensionTask.new('fast_xs')
|
5
|
+
Rake::ExtensionTask.new('fast_xs_extra')
|
6
|
+
rescue LoadError
|
7
|
+
warn "rake-compiler not available, cross compiling disabled"
|
8
|
+
end
|
6
9
|
|
7
10
|
Hoe.spec('fast_xs') do
|
8
|
-
self.version = '0.7.
|
11
|
+
self.version = '0.7.2'
|
9
12
|
self.author = 'Eric Wong'
|
10
13
|
self.email = 'fast-xs-general@rubyforge.org'
|
11
14
|
self.url = 'http://fast-xs.rubyforge.org/'
|
12
15
|
self.remote_rdoc_dir = ''
|
13
16
|
self.rubyforge_name = 'fast-xs'
|
17
|
+
self.spec_extras = { :extensions => Dir.glob('ext/*/extconf.rb') }
|
14
18
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fast_xs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Wong
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-07-
|
12
|
+
date: 2009-07-31 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -45,8 +45,9 @@ description: |-
|
|
45
45
|
email: fast-xs-general@rubyforge.org
|
46
46
|
executables: []
|
47
47
|
|
48
|
-
extensions:
|
49
|
-
|
48
|
+
extensions:
|
49
|
+
- ext/fast_xs/extconf.rb
|
50
|
+
- ext/fast_xs_extra/extconf.rb
|
50
51
|
extra_rdoc_files:
|
51
52
|
- History.txt
|
52
53
|
- Manifest.txt
|
@@ -96,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
97
|
requirements: []
|
97
98
|
|
98
99
|
rubyforge_project: fast-xs
|
99
|
-
rubygems_version: 1.3.
|
100
|
+
rubygems_version: 1.3.5
|
100
101
|
signing_key:
|
101
102
|
specification_version: 3
|
102
103
|
summary: fast_xs provides C extensions for escaping text
|