Skip to content

Commit

Permalink
Updating gemspec and history for json
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Aug 9, 2010
1 parent c0cd425 commit 05afa39
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
26 changes: 13 additions & 13 deletions couchrest.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber", "Sam Lown"]
s.date = %q{2010-08-03}
s.date = %q{2010-08-09}
s.description = %q{CouchRest provides a simple interface on top of CouchDB's RESTful HTTP API, as well as including some utility scripts for managing views and attachments.}
s.email = %q{jchris@apache.org}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -73,39 +73,39 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/couchrest/couchrest}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Lean and RESTful interface to CouchDB.}
s.test_files = [
"spec/couchrest/couchrest_spec.rb",
"spec/couchrest/database_spec.rb",
"spec/couchrest/design_spec.rb",
"spec/spec_helper.rb",
"spec/couchrest/couchrest_spec.rb",
"spec/couchrest/server_spec.rb",
"spec/couchrest/document_spec.rb",
"spec/couchrest/design_spec.rb",
"spec/couchrest/database_spec.rb",
"spec/couchrest/helpers/pager_spec.rb",
"spec/couchrest/helpers/streamer_spec.rb",
"spec/couchrest/server_spec.rb",
"spec/spec_helper.rb",
"examples/word_count/word_count.rb",
"examples/word_count/word_count_views.rb",
"examples/word_count/word_count_query.rb",
"examples/word_count/word_count_views.rb"
"examples/word_count/word_count.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_runtime_dependency(%q<mime-types>, [">= 1.15"])
s.add_runtime_dependency(%q<json>, ["= 1.2.4"])
s.add_runtime_dependency(%q<json>, [">= 1.4.6"])
else
s.add_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
s.add_dependency(%q<json>, ["= 1.2.4"])
s.add_dependency(%q<json>, [">= 1.4.6"])
end
else
s.add_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
s.add_dependency(%q<json>, ["= 1.2.4"])
s.add_dependency(%q<json>, [">= 1.4.6"])
end
end

1 change: 1 addition & 0 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Minor enhancements
* rest-client version mismatch between couchrest.rb & gemspec
* json 1.4.X series re-enabled as tests now pass with v.1.4.6

== 1.0.0

Expand Down

0 comments on commit 05afa39

Please sign in to comment.