ruby_ext 0.4.16 → 0.4.17
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.
- data/lib/yaml_fix.rb +9 -9
- metadata +26 -17
data/lib/yaml_fix.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
require 'yaml'
|
|
2
|
+
|
|
3
|
+
begin
|
|
4
|
+
require 'psych'
|
|
5
|
+
YAML::ENGINE.yamler = 'psych'
|
|
6
|
+
rescue Exception
|
|
7
|
+
warn "can't load 'psych', the new YAML engine (probably the 'libyaml' is not installed), usng 'sych' a deprecated one, \
|
|
8
|
+
there may be some problems with encoding."
|
|
9
|
+
end
|
metadata
CHANGED
|
@@ -1,23 +1,28 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_ext
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.4.17
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Alexey Petrushin
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
date: 2011-07-04 00:00:00 +04:00
|
|
13
14
|
default_executable:
|
|
14
15
|
dependencies: []
|
|
16
|
+
|
|
15
17
|
description:
|
|
16
18
|
email:
|
|
17
19
|
executables: []
|
|
20
|
+
|
|
18
21
|
extensions: []
|
|
22
|
+
|
|
19
23
|
extra_rdoc_files: []
|
|
20
|
-
|
|
24
|
+
|
|
25
|
+
files:
|
|
21
26
|
- Rakefile
|
|
22
27
|
- readme.md
|
|
23
28
|
- lib/rake_ext/project.rb
|
|
@@ -77,26 +82,30 @@ files:
|
|
|
77
82
|
has_rdoc: true
|
|
78
83
|
homepage: http://github.com/alexeypetrushin/ruby_ext
|
|
79
84
|
licenses: []
|
|
85
|
+
|
|
80
86
|
post_install_message:
|
|
81
87
|
rdoc_options: []
|
|
82
|
-
|
|
88
|
+
|
|
89
|
+
require_paths:
|
|
83
90
|
- lib
|
|
84
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
92
|
none: false
|
|
86
|
-
requirements:
|
|
87
|
-
- -
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
90
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: "0"
|
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
98
|
none: false
|
|
92
|
-
requirements:
|
|
93
|
-
- -
|
|
94
|
-
- !ruby/object:Gem::Version
|
|
95
|
-
version:
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: "0"
|
|
96
103
|
requirements: []
|
|
104
|
+
|
|
97
105
|
rubyforge_project:
|
|
98
106
|
rubygems_version: 1.5.1
|
|
99
107
|
signing_key:
|
|
100
108
|
specification_version: 3
|
|
101
109
|
summary: Ruby Extensions
|
|
102
110
|
test_files: []
|
|
111
|
+
|