removed couchapp from couchrest gem
This commit is contained in:
parent
efa3c2e270
commit
4a5863b103
2
Rakefile
2
Rakefile
|
@ -5,7 +5,7 @@ require 'rake/gempackagetask'
|
||||||
|
|
||||||
spec = Gem::Specification.new do |s|
|
spec = Gem::Specification.new do |s|
|
||||||
s.name = "couchrest"
|
s.name = "couchrest"
|
||||||
s.version = "0.11.2"
|
s.version = "0.12.0"
|
||||||
s.date = "2008-11-22"
|
s.date = "2008-11-22"
|
||||||
s.summary = "Lean and RESTful interface to CouchDB."
|
s.summary = "Lean and RESTful interface to CouchDB."
|
||||||
s.email = "jchris@apache.org"
|
s.email = "jchris@apache.org"
|
||||||
|
|
|
@ -4,12 +4,11 @@ Gem::Specification.new do |s|
|
||||||
s.executables = ["couchdir", "couchapp"]
|
s.executables = ["couchdir", "couchapp"]
|
||||||
s.authors = ["J. Chris Anderson"]
|
s.authors = ["J. Chris Anderson"]
|
||||||
s.required_rubygems_version = ">= 0"
|
s.required_rubygems_version = ">= 0"
|
||||||
s.version = "0.11.2"
|
s.version = "0.12.0"
|
||||||
s.files = ["LICENSE",
|
s.files = ["LICENSE",
|
||||||
"README.rdoc",
|
"README.rdoc",
|
||||||
"Rakefile",
|
"Rakefile",
|
||||||
"THANKS",
|
"THANKS",
|
||||||
"bin/couchapp",
|
|
||||||
"bin/couchdir",
|
"bin/couchdir",
|
||||||
"examples/model",
|
"examples/model",
|
||||||
"examples/model/example.rb",
|
"examples/model/example.rb",
|
||||||
|
@ -41,27 +40,17 @@ Gem::Specification.new do |s|
|
||||||
"lib/couchrest/helper",
|
"lib/couchrest/helper",
|
||||||
"lib/couchrest/helper/app-template",
|
"lib/couchrest/helper/app-template",
|
||||||
"lib/couchrest/helper/app-template/_attachments",
|
"lib/couchrest/helper/app-template/_attachments",
|
||||||
"lib/couchrest/helper/app-template/_attachments/index.html",
|
|
||||||
"lib/couchrest/helper/app-template/foo",
|
"lib/couchrest/helper/app-template/foo",
|
||||||
"lib/couchrest/helper/app-template/foo/bar.txt",
|
|
||||||
"lib/couchrest/helper/app-template/forms",
|
"lib/couchrest/helper/app-template/forms",
|
||||||
"lib/couchrest/helper/app-template/forms/example-form.js",
|
|
||||||
"lib/couchrest/helper/app-template/lib",
|
"lib/couchrest/helper/app-template/lib",
|
||||||
"lib/couchrest/helper/app-template/lib/helpers",
|
"lib/couchrest/helper/app-template/lib/helpers",
|
||||||
"lib/couchrest/helper/app-template/lib/helpers/math.js",
|
|
||||||
"lib/couchrest/helper/app-template/lib/helpers/template.js",
|
|
||||||
"lib/couchrest/helper/app-template/lib/templates",
|
"lib/couchrest/helper/app-template/lib/templates",
|
||||||
"lib/couchrest/helper/app-template/lib/templates/example.html",
|
|
||||||
"lib/couchrest/helper/app-template/views",
|
"lib/couchrest/helper/app-template/views",
|
||||||
"lib/couchrest/helper/app-template/views/example",
|
"lib/couchrest/helper/app-template/views/example",
|
||||||
"lib/couchrest/helper/app-template/views/example/map.js",
|
|
||||||
"lib/couchrest/helper/app-template/views/example/reduce.js",
|
|
||||||
"lib/couchrest/helper/file_manager.rb",
|
|
||||||
"lib/couchrest/helper/pager.rb",
|
"lib/couchrest/helper/pager.rb",
|
||||||
"lib/couchrest/helper/streamer.rb",
|
"lib/couchrest/helper/streamer.rb",
|
||||||
"lib/couchrest/monkeypatches.rb",
|
"lib/couchrest/monkeypatches.rb",
|
||||||
"lib/couchrest.rb",
|
"lib/couchrest.rb",
|
||||||
"spec/couchapp_spec.rb",
|
|
||||||
"spec/couchrest",
|
"spec/couchrest",
|
||||||
"spec/couchrest/core",
|
"spec/couchrest/core",
|
||||||
"spec/couchrest/core/couchrest_spec.rb",
|
"spec/couchrest/core/couchrest_spec.rb",
|
||||||
|
@ -70,7 +59,6 @@ Gem::Specification.new do |s|
|
||||||
"spec/couchrest/core/document_spec.rb",
|
"spec/couchrest/core/document_spec.rb",
|
||||||
"spec/couchrest/core/model_spec.rb",
|
"spec/couchrest/core/model_spec.rb",
|
||||||
"spec/couchrest/helpers",
|
"spec/couchrest/helpers",
|
||||||
"spec/couchrest/helpers/file_manager_spec.rb",
|
|
||||||
"spec/couchrest/helpers/pager_spec.rb",
|
"spec/couchrest/helpers/pager_spec.rb",
|
||||||
"spec/couchrest/helpers/streamer_spec.rb",
|
"spec/couchrest/helpers/streamer_spec.rb",
|
||||||
"spec/fixtures",
|
"spec/fixtures",
|
||||||
|
|
Loading…
Reference in a new issue