crags.gemspec in crags-1.6.0 vs crags.gemspec in crags-2.0.0
- old
+ new
@@ -3,58 +3,83 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{crags}
- s.version = "1.6.0"
+ s.version = "2.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Justin Marney"]
- s.date = %q{2010-04-14}
+ s.date = %q{2010-07-26}
s.description = %q{A library to help search across multiple craigslist locations.}
s.email = %q{gotascii@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
+ "Gemfile",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"crags.gemspec",
"lib/crags.rb",
- "lib/crags/fetch.rb",
- "lib/crags/proxy.rb",
- "lib/crags/runner.rb",
- "lib/crags/searcher.rb",
- "test/crags/fetch_test.rb",
- "test/crags/proxy_test.rb",
- "test/crags/runner_test.rb",
- "test/crags/searcher_test.rb",
- "test/test_helper.rb"
+ "lib/crags/category.rb",
+ "lib/crags/country.rb",
+ "lib/crags/fetcher.rb",
+ "lib/crags/item.rb",
+ "lib/crags/location.rb",
+ "lib/crags/search/country.rb",
+ "lib/crags/search/location.rb",
+ "lib/crags/search/search.rb",
+ "lib/ext/hpricot/elem.rb",
+ "lib/ext/string.rb",
+ "spec/crags/category_spec.rb",
+ "spec/crags/country_spec.rb",
+ "spec/crags/fetcher_spec.rb",
+ "spec/crags/item_spec.rb",
+ "spec/crags/location_spec.rb",
+ "spec/crags/search/country_spec.rb",
+ "spec/crags/search/location_spec.rb",
+ "spec/crags/search/search_spec.rb",
+ "spec/ext/hpricot/elem_spec.rb",
+ "spec/ext/string_spec.rb",
+ "spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/gotascii/crags}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{A library to help search across multiple craigslist locations.}
s.test_files = [
- "test/crags/fetch_test.rb",
- "test/crags/proxy_test.rb",
- "test/crags/runner_test.rb",
- "test/crags/searcher_test.rb",
- "test/test_helper.rb"
+ "spec/crags/category_spec.rb",
+ "spec/crags/country_spec.rb",
+ "spec/crags/fetcher_spec.rb",
+ "spec/crags/item_spec.rb",
+ "spec/crags/location_spec.rb",
+ "spec/crags/search/country_spec.rb",
+ "spec/crags/search/location_spec.rb",
+ "spec/crags/search/search_spec.rb",
+ "spec/ext/hpricot/elem_spec.rb",
+ "spec/ext/string_spec.rb",
+ "spec/spec_helper.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<curb>, [">= 0"])
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
else
+ s.add_dependency(%q<curb>, [">= 0"])
+ s.add_dependency(%q<hpricot>, [">= 0"])
end
else
+ s.add_dependency(%q<curb>, [">= 0"])
+ s.add_dependency(%q<hpricot>, [">= 0"])
end
end