extlib 0.9.2

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.

Potentially problematic release.


This version of extlib might be problematic. Click here for more details.

@@ -0,0 +1 @@
1
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'extlib')
@@ -0,0 +1,4 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
2
+
3
+ describe String do
4
+ end
@@ -0,0 +1,12 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
2
+
3
+ describe Struct do
4
+
5
+ it "should have attributes" do
6
+
7
+ s = Struct.new(:name).new('bob')
8
+ s.attributes.should == { :name => 'bob' }
9
+
10
+ end
11
+
12
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: extlib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.2
5
+ platform: ruby
6
+ authors:
7
+ - Sam Smoot
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-06-25 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: english
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.2.0
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: rspec
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 1.1.3
32
+ version:
33
+ description: Conveniences
34
+ email: ssmoot@gmail.com
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files: []
40
+
41
+ files:
42
+ - README
43
+ - lib/extlib/assertions.rb
44
+ - lib/extlib/blank.rb
45
+ - lib/extlib/hook.rb
46
+ - lib/extlib/inflection.rb
47
+ - lib/extlib/lazy_array.rb
48
+ - lib/extlib/module.rb
49
+ - lib/extlib/object.rb
50
+ - lib/extlib/pathname.rb
51
+ - lib/extlib/pooling.rb
52
+ - lib/extlib/string.rb
53
+ - lib/extlib/struct.rb
54
+ - lib/extlib.rb
55
+ - spec/blank_spec.rb
56
+ - spec/hook_spec.rb
57
+ - spec/inflection_spec.rb
58
+ - spec/lazy_array_spec.rb
59
+ - spec/module_spec.rb
60
+ - spec/object_spec.rb
61
+ - spec/pooling_spec.rb
62
+ - spec/spec_helper.rb
63
+ - spec/string_spec.rb
64
+ - spec/struct_spec.rb
65
+ has_rdoc: false
66
+ homepage: http://extlib.rubyforge.org
67
+ post_install_message:
68
+ rdoc_options: []
69
+
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: "0"
77
+ version:
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: "0"
83
+ version:
84
+ requirements:
85
+ - none
86
+ rubyforge_project: extlib
87
+ rubygems_version: 1.0.1
88
+ signing_key:
89
+ specification_version: 2
90
+ summary: Support Library
91
+ test_files: []
92
+