-
Notifications
You must be signed in to change notification settings - Fork 0
/
AvantiConveniences.gemspec
43 lines (39 loc) · 2.69 KB
/
AvantiConveniences.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{AvantiConveniences}
s.version = "1.0.7"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamie Flournoy"]
s.date = %q{2009-12-28}
s.description = %q{AvantiConveniences is a set of convenience code for Ruby on Rails applications.}
s.email = ["[email protected]"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.files = ["AvantiConveniences.gemspec", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "lib/arg_checks.rb", "lib/array_extensions.rb", "lib/avanti_conveniences.rb", "lib/die.rb", "lib/float_extensions.rb", "lib/hash_extensions.rb", "lib/string_extensions.rb", "lib/text_formatter.rb", "lib/time_extensions.rb", "lib/uri_extensions.rb", "test/test_arg_checks.rb", "test/test_array_extensions.rb", "test/test_avanti_conveniences.rb", "test/test_die.rb", "test/test_float_extensions.rb", "test/test_hash_extensions.rb", "test/test_string_extensions.rb", "test/test_text_formatter.rb", "test/test_time_extensions.rb", "test/test_uri_extensions.rb"]
s.homepage = %q{http://www.pervasivecode.com/blog/avanticonveniences/}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{avanticonveniences}
s.rubygems_version = %q{1.3.5}
s.summary = %q{AvantiConveniences is a set of convenience code for Ruby on Rails applications.}
s.test_files = ["test/test_arg_checks.rb", "test/test_array_extensions.rb", "test/test_avanti_conveniences.rb", "test/test_die.rb", "test/test_float_extensions.rb", "test/test_hash_extensions.rb", "test/test_string_extensions.rb", "test/test_text_formatter.rb", "test/test_time_extensions.rb", "test/test_uri_extensions.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 1.2.6"])
s.add_runtime_dependency(%q<text-hyphen>, [">= 1.0.0"])
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
s.add_development_dependency(%q<hoe>, [">= 2.3.3"])
else
s.add_dependency(%q<activesupport>, [">= 1.2.6"])
s.add_dependency(%q<text-hyphen>, [">= 1.0.0"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
s.add_dependency(%q<hoe>, [">= 2.3.3"])
end
else
s.add_dependency(%q<activesupport>, [">= 1.2.6"])
s.add_dependency(%q<text-hyphen>, [">= 1.0.0"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
s.add_dependency(%q<hoe>, [">= 2.3.3"])
end
end