strongtyping 2.0.6 → 2.0.7
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/CHANGES +58 -0
- data/LGPL +515 -515
- data/MANIFEST +11 -9
- data/README +330 -0
- data/Rakefile +48 -0
- data/{extconf.rb → ext/extconf.rb} +3 -3
- data/ext/strongtyping.c +283 -0
- data/{strongtyping.h → ext/strongtyping.h} +34 -34
- data/{t/timetest.rb → samples/sample_strongtyping.rb} +28 -28
- data/strongtyping.gemspec +22 -24
- data/{t/test.rb → test/test_strongtyping.rb} +104 -100
- metadata +24 -21
- data/README.en +0 -420
- data/strongtyping.c +0 -247
- data/strongtyping.gemspec~ +0 -24
data/strongtyping.gemspec~
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
spec = Gem::Specification.new do |gem|
|
4
|
-
gem.name = 'strongtyping'
|
5
|
-
gem.version = '2.0.6b'
|
6
|
-
gem.author = 'Ryan Pavlik'
|
7
|
-
gem.email = 'rpav@mephle.com'
|
8
|
-
gem.homepage = 'http://mephle.org/StrongTyping/'
|
9
|
-
gem.platform = Gem::Platform::RUBY
|
10
|
-
gem.summary = 'Ruby module that provides type checking and method overloading'
|
11
|
-
gem.description = 'Ruby module that provides type checking and method overloading'
|
12
|
-
gem.test_files = Dir['t/*.rb']
|
13
|
-
gem.has_rdoc = false
|
14
|
-
gem.extra_rdoc_files = ['LGPL', 'README.en', 'MANIFEST']
|
15
|
-
gem.rubyforge_project = 'shards'
|
16
|
-
gem.files = Dir['*']
|
17
|
-
gem.required_ruby_version = '>= 1.8.0'
|
18
|
-
gem.extensions = ['extconf.rb']
|
19
|
-
end
|
20
|
-
|
21
|
-
if $0 == __FILE__
|
22
|
-
Gem.manage_gems
|
23
|
-
Gem::Builder.new(spec).build
|
24
|
-
end
|