Skip to content

Commit

Permalink
remove gemspec from gitignore. It is necessary to use Bundler(OK, I H…
Browse files Browse the repository at this point in the history
…ATE Bundler but...)
  • Loading branch information
tapajos committed Jul 1, 2010
1 parent 1cbfefd commit f993eb1
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.DS_Store
html/*
pkg
*.swp
*.gemspec
*.swp
108 changes: 108 additions & 0 deletions couchrest.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{couchrest}
s.version = "1.0.0.beta"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber"]
s.date = %q{2010-07-01}
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 = [
"LICENSE",
"README.md",
"THANKS.md"
]
s.files = [
"LICENSE",
"README.md",
"Rakefile",
"THANKS.md",
"couchrest.gemspec",
"examples/word_count/markov",
"examples/word_count/views/books/chunked-map.js",
"examples/word_count/views/books/united-map.js",
"examples/word_count/views/markov/chain-map.js",
"examples/word_count/views/markov/chain-reduce.js",
"examples/word_count/views/word_count/count-map.js",
"examples/word_count/views/word_count/count-reduce.js",
"examples/word_count/word_count.rb",
"examples/word_count/word_count_query.rb",
"examples/word_count/word_count_views.rb",
"history.txt",
"lib/couchrest.rb",
"lib/couchrest/commands/generate.rb",
"lib/couchrest/commands/push.rb",
"lib/couchrest/database.rb",
"lib/couchrest/design.rb",
"lib/couchrest/document.rb",
"lib/couchrest/helper/attachments.rb",
"lib/couchrest/helper/pager.rb",
"lib/couchrest/helper/streamer.rb",
"lib/couchrest/helper/upgrade.rb",
"lib/couchrest/middlewares/logger.rb",
"lib/couchrest/monkeypatches.rb",
"lib/couchrest/response.rb",
"lib/couchrest/rest_api.rb",
"lib/couchrest/server.rb",
"lib/couchrest/support/class.rb",
"spec/couchrest/couchrest_spec.rb",
"spec/couchrest/database_spec.rb",
"spec/couchrest/design_spec.rb",
"spec/couchrest/document_spec.rb",
"spec/couchrest/helpers/pager_spec.rb",
"spec/couchrest/helpers/streamer_spec.rb",
"spec/couchrest/server_spec.rb",
"spec/fixtures/attachments/README",
"spec/fixtures/attachments/couchdb.png",
"spec/fixtures/attachments/test.html",
"spec/fixtures/views/lib.js",
"spec/fixtures/views/test_view/lib.js",
"spec/fixtures/views/test_view/only-map.js",
"spec/fixtures/views/test_view/test-map.js",
"spec/fixtures/views/test_view/test-reduce.js",
"spec/spec.opts",
"spec/spec_helper.rb",
"utils/remap.rb",
"utils/subset.rb"
]
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.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/couchrest/document_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_query.rb",
"examples/word_count/word_count_views.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
s.add_runtime_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_runtime_dependency(%q<json>, ["<= 1.4.2"])
else
s.add_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_dependency(%q<json>, ["<= 1.4.2"])
end
else
s.add_dependency(%q<rest-client>, [">= 1.5.1"])
s.add_dependency(%q<json>, ["<= 1.4.2"])
end
end

0 comments on commit f993eb1

Please sign in to comment.