strongtyping 2.0.6 → 2.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -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