Pushing a Ruby warning when overriding String#each, but only worrying about it pre-1.9
[stringray.git] / stringray.gemspec
blob9e4f7aa7cadfc0a0e93d549aeb48f2b8bccd4b22
1 # -*- encoding: utf-8 -*-
3 Gem::Specification.new do |s|
4   s.name = %q{stringray}
5   s.version = "2"
7   s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8   s.authors = ["elliottcable"]
9   s.date = %q{2009-06-11}
10   s.description = %q{Combining many of the benefits of Arrays and Strings, StringRay allows you to treat a String as an Array of words in many cases.}
11   s.email = ["StringRay@elliottcable.com"]
12   s.extra_rdoc_files = ["lib/stringray.rb", "lib/stringray/core_ext.rb", "lib/stringray/core_ext/kernel.rb", "lib/stringray/core_ext/spec/rake/verify_rcov.rb", "README.markdown"]
13   s.files = ["lib/stringray.rb", "lib/stringray/core_ext.rb", "lib/stringray/core_ext/kernel.rb", "lib/stringray/core_ext/spec/rake/verify_rcov.rb", "spec/stringray_spec.rb", "README.markdown", "Rakefile.rb", ".manifest", "stringray.gemspec"]
14   s.has_rdoc = true
15   s.homepage = %q{http://github.com/elliottcable/stringray}
16   s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Stringray", "--main", "README.markdown"]
17   s.require_paths = ["lib"]
18   s.rubyforge_project = %q{stringray}
19   s.rubygems_version = %q{1.3.1}
20   s.summary = %q{Combining many of the benefits of Arrays and Strings, StringRay allows you to treat a String as an Array of words in many cases.}
22   if s.respond_to? :specification_version then
23     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24     s.specification_version = 2
26     if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27       s.add_development_dependency(%q<elliottcable-echoe>, [">= 0", "= 3.0.2"])
28       s.add_development_dependency(%q<rspec>, [">= 0"])
29       s.add_development_dependency(%q<rcov>, [">= 0"])
30       s.add_development_dependency(%q<yard>, [">= 0"])
31     else
32       s.add_dependency(%q<elliottcable-echoe>, [">= 0", "= 3.0.2"])
33       s.add_dependency(%q<rspec>, [">= 0"])
34       s.add_dependency(%q<rcov>, [">= 0"])
35       s.add_dependency(%q<yard>, [">= 0"])
36     end
37   else
38     s.add_dependency(%q<elliottcable-echoe>, [">= 0", "= 3.0.2"])
39     s.add_dependency(%q<rspec>, [">= 0"])
40     s.add_dependency(%q<rcov>, [">= 0"])
41     s.add_dependency(%q<yard>, [">= 0"])
42   end
43 end