Fixed incorrect library path in couchview command. Fixed gemspec.

This commit is contained in:
Geoffrey Grosenbach 2008-09-11 22:42:30 -07:00
parent 8b83f7e2fe
commit 2fbd729ea1
2 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env ruby
require 'optparse'
require File.dirname(__FILE__) + "/../lib/couch_rest/commands"
require File.dirname(__FILE__) + "/../lib/couchrest"
# Set defaults
options = {

View file

@ -10,10 +10,11 @@ Gem::Specification.new do |s|
s.authors = ["J. Chris Anderson", "Greg Borenstein"]
s.files = %w{
lib/couchrest.rb
lib/couch_rest.rb lib/database.rb lib/pager.rb lib/file_manager.rb lib/streamer.rb
lib/couch_rest/commands.rb
lib/couch_rest/commands/generate.rb lib/couch_rest/commands/push.rb
Rakefile README.markdown
lib/couchrest/commands/generate.rb lib/couchrest/commands/push.rb
lib/couchrest/core/database.rb lib/couchrest/core/server.rb
lib/couchrest/helper/file_manager.rb lib/couchrest/helper/pager.rb lib/couchrest/helper/streamer.rb
lib/couchrest/monkeypatches.rb
Rakefile README.rdoc
bin/couchdir bin/couchview
spec/couchrest_spec.rb spec/database_spec.rb spec/pager_spec.rb spec/file_manager_spec.rb spec/streamer_spec.rb
spec/spec_helper.rb