Skip to content

Commit

Permalink
packing 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Sosinski committed Oct 30, 2010
1 parent 11c1c5a commit 8cfe7ca
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 10 deletions.
11 changes: 2 additions & 9 deletions .gitignore
@@ -1,12 +1,5 @@
.DS_Store
.bundle
*.swp
*.swo
log/**
tmp/**
!log/.gitignore
!tmp/.gitignore
!tmp/restart.txt
config/database.yml
public/stylesheets/*.css
public/javascripts/min/*.js.min
pkg

1 change: 1 addition & 0 deletions CHANGELOG
@@ -0,0 +1 @@
v0.0.1. first release
2 changes: 1 addition & 1 deletion MIT-LICENSE.rb → LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2009 Robert Sosinski (http://www.robertsosinski.com)
Copyright (c) 2010 Robert Sosinski (http://www.robertsosinski.com)

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
33 changes: 33 additions & 0 deletions Manifest
@@ -0,0 +1,33 @@
CHANGELOG
LICENSE
Manifest
README.markdown
Rakefile
TODO
lib/couch-client.rb
lib/couch-client/attachment.rb
lib/couch-client/attachment_list.rb
lib/couch-client/collection.rb
lib/couch-client/connection.rb
lib/couch-client/connection_handler.rb
lib/couch-client/consistent_hash.rb
lib/couch-client/database.rb
lib/couch-client/design.rb
lib/couch-client/document.rb
lib/couch-client/hookup.rb
lib/couch-client/row.rb
spec/attachment_list_spec.rb
spec/attachment_spec.rb
spec/collection_spec.rb
spec/conection_handler_spec.rb
spec/connection_spec.rb
spec/consistent_hash_spec.rb
spec/couch-client_spec.rb
spec/database_spec.rb
spec/design_spec.rb
spec/document_spec.rb
spec/files/image.png
spec/files/plain.txt
spec/hookup_spec.rb
spec/row_spec.rb
spec/spec_helper.rb
7 changes: 7 additions & 0 deletions Rakefile
@@ -1,8 +1,15 @@
require 'rake'
require 'rspec/core/rake_task'
require 'echoe'

desc "Run all specs"
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = %w[--colour --format progress]
end

Echoe.new("couch-client") do |p|
p.author = "Robert Sosinski"
p.summary = "A CouchDB Ruby Client"
p.url = "http://github.com/robertsosinski/couch-client"
p.runtime_dependencies = ["json"]
end
33 changes: 33 additions & 0 deletions couch-client.gemspec
@@ -0,0 +1,33 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{couch-client}
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Robert Sosinski"]
s.date = %q{2010-10-29}
s.description = %q{A CouchDB Ruby Client}
s.email = %q{}
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.markdown", "TODO", "lib/couch-client.rb", "lib/couch-client/attachment.rb", "lib/couch-client/attachment_list.rb", "lib/couch-client/collection.rb", "lib/couch-client/connection.rb", "lib/couch-client/connection_handler.rb", "lib/couch-client/consistent_hash.rb", "lib/couch-client/database.rb", "lib/couch-client/design.rb", "lib/couch-client/document.rb", "lib/couch-client/hookup.rb", "lib/couch-client/row.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.markdown", "Rakefile", "TODO", "lib/couch-client.rb", "lib/couch-client/attachment.rb", "lib/couch-client/attachment_list.rb", "lib/couch-client/collection.rb", "lib/couch-client/connection.rb", "lib/couch-client/connection_handler.rb", "lib/couch-client/consistent_hash.rb", "lib/couch-client/database.rb", "lib/couch-client/design.rb", "lib/couch-client/document.rb", "lib/couch-client/hookup.rb", "lib/couch-client/row.rb", "spec/attachment_list_spec.rb", "spec/attachment_spec.rb", "spec/collection_spec.rb", "spec/conection_handler_spec.rb", "spec/connection_spec.rb", "spec/consistent_hash_spec.rb", "spec/couch-client_spec.rb", "spec/database_spec.rb", "spec/design_spec.rb", "spec/document_spec.rb", "spec/files/image.png", "spec/files/plain.txt", "spec/hookup_spec.rb", "spec/row_spec.rb", "spec/spec_helper.rb", "couch-client.gemspec"]
s.homepage = %q{http://github.com/robertsosinski/couch-client}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Couch-client", "--main", "README.markdown"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{couch-client}
s.rubygems_version = %q{1.3.7}
s.summary = %q{A CouchDB Ruby Client}

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<json>, [">= 0"])
else
s.add_dependency(%q<json>, [">= 0"])
end
else
s.add_dependency(%q<json>, [">= 0"])
end
end

0 comments on commit 8cfe7ca

Please sign in to comment.