Skip to content

Commit

Permalink
Gem generation
Browse files Browse the repository at this point in the history
  • Loading branch information
demetriusnunes committed Jan 29, 2009
1 parent 9420d0f commit 1475b28
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coverage
doc
doc
pkg
5 changes: 2 additions & 3 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
== 0.0.1 2009-01-21
== 0.0.5 2009-01-29

* 1 major enhancement:
* Initial release
* Initial release
10 changes: 5 additions & 5 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Rakefile
lib/clouder.rb
lib/clouder/entity.rb
lib/clouder/rest.rb
script/console
script/destroy
script/generate
test/test_clouder.rb
test/test_helper.rb
spec/clouder_spec.rb
spec/entity_spec.rb
spec/spec_helper.rb
spec/spec.opts
spec/config.ru
38 changes: 38 additions & 0 deletions clouder.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{clouder}
s.version = "0.5.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Demetrius Nunes"]
s.date = %q{2009-01-29}
s.description = %q{A Ruby client library for accessing CloudKit using Ruby objects.}
s.email = ["demetriusnunes@gmail.com"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc"]
s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "lib/clouder.rb", "lib/clouder/entity.rb", "lib/clouder/rest.rb", "spec/clouder_spec.rb", "spec/entity_spec.rb", "spec/spec_helper.rb", "spec/spec.opts", "spec/config.ru"]
s.has_rdoc = true
s.homepage = %q{http://github.com/demetriusnunes/clouder/tree/master}
s.post_install_message = %q{PostInstall.txt}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{clouder}
s.rubygems_version = %q{1.3.1}
s.summary = %q{A Ruby client library for accessing CloudKit using Ruby objects.}

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

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<newgem>, [">= 1.2.3"])
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
else
s.add_dependency(%q<newgem>, [">= 1.2.3"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
end
else
s.add_dependency(%q<newgem>, [">= 1.2.3"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
end
end

0 comments on commit 1475b28

Please sign in to comment.