aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/activeresource.gemspec
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-08-31 17:20:44 -0700
committerYehuda Katz <wycats@gmail.com>2009-08-31 17:20:44 -0700
commit67f5d611f5735a6444314ae1819938e63f0d174b (patch)
tree72f82c9aa62b0a4305f061277478103465eb633b /activeresource/activeresource.gemspec
parent66d713fc8f62e270ac21f6c413d6527fbf30dc52 (diff)
downloadrails-67f5d611f5735a6444314ae1819938e63f0d174b.tar.gz
rails-67f5d611f5735a6444314ae1819938e63f0d174b.tar.bz2
rails-67f5d611f5735a6444314ae1819938e63f0d174b.zip
Add rake gemspec and gemspecs to the repo
Diffstat (limited to 'activeresource/activeresource.gemspec')
-rw-r--r--activeresource/activeresource.gemspec34
1 files changed, 34 insertions, 0 deletions
diff --git a/activeresource/activeresource.gemspec b/activeresource/activeresource.gemspec
new file mode 100644
index 0000000000..0ce1a71d5a
--- /dev/null
+++ b/activeresource/activeresource.gemspec
@@ -0,0 +1,34 @@
+# -*- encoding: utf-8 -*-
+
+Gem::Specification.new do |s|
+ s.name = %q{activeresource}
+ s.version = "3.0.pre"
+
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
+ s.authors = ["David Heinemeier Hansson"]
+ s.autorequire = %q{active_resource}
+ s.date = %q{2009-08-31}
+ s.description = %q{Wraps web resources in model classes that can be manipulated through XML over REST.}
+ s.email = %q{david@loudthinking.com}
+ s.extra_rdoc_files = ["README"]
+ s.files = ["Rakefile", "README", "CHANGELOG", "lib/active_resource", "lib/active_resource/base.rb", "lib/active_resource/connection.rb", "lib/active_resource/custom_methods.rb", "lib/active_resource/exceptions.rb", "lib/active_resource/formats", "lib/active_resource/formats/json_format.rb", "lib/active_resource/formats/xml_format.rb", "lib/active_resource/formats.rb", "lib/active_resource/http_mock.rb", "lib/active_resource/observing.rb", "lib/active_resource/validations.rb", "lib/active_resource/version.rb", "lib/active_resource.rb", "lib/activeresource.rb", "test/abstract_unit.rb", "test/cases", "test/cases/authorization_test.rb", "test/cases/base", "test/cases/base/custom_methods_test.rb", "test/cases/base/equality_test.rb", "test/cases/base/load_test.rb", "test/cases/base_errors_test.rb", "test/cases/base_test.rb", "test/cases/finder_test.rb", "test/cases/format_test.rb", "test/cases/observing_test.rb", "test/cases/validations_test.rb", "test/connection_test.rb", "test/fixtures", "test/fixtures/beast.rb", "test/fixtures/customer.rb", "test/fixtures/person.rb", "test/fixtures/project.rb", "test/fixtures/proxy.rb", "test/fixtures/street_address.rb", "test/setter_trap.rb", "examples/simple.rb"]
+ s.homepage = %q{http://www.rubyonrails.org}
+ s.rdoc_options = ["--main", "README"]
+ s.require_paths = ["lib"]
+ s.rubyforge_project = %q{activeresource}
+ s.rubygems_version = %q{1.3.5}
+ s.summary = %q{Think Active Record for web resources.}
+
+ 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>, ["= 3.0.pre"])
+ else
+ s.add_dependency(%q<activesupport>, ["= 3.0.pre"])
+ end
+ else
+ s.add_dependency(%q<activesupport>, ["= 3.0.pre"])
+ end
+end