Navigation Menu

Skip to content

Commit

Permalink
fixing description and gem dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
achamian committed Jul 28, 2010
1 parent a9e9a7d commit 6a81eef
Show file tree
Hide file tree
Showing 25 changed files with 6 additions and 5 deletions.
Empty file modified .gitignore 100644 → 100755
Empty file.
Empty file modified README.rdoc 100644 → 100755
Empty file.
7 changes: 3 additions & 4 deletions Rakefile 100644 → 100755
Expand Up @@ -8,7 +8,6 @@ namespace :spec do
desc "Run all unit specs"
Spec::Rake::SpecTask.new(:unit) do |task|
task.spec_files = FileList['spec/pox_paginate/**/*_spec.rb']
# task.spec_opts = ['--options', 'spec/spec.opts']
end
end

Expand All @@ -17,16 +16,16 @@ begin
Jeweler::Tasks.new do |gemspec|
gemspec.name = "pox_paginate"
gemspec.summary = "Transparent support for pagination using WillPaginate using POX (Plain Old Xml) and ActiveResource"
gemspec.description = "Wrest is a HTTP and REST client library which allows you to quickly build well encapsulated, object oriented wrappers around any web service."
gemspec.description = "Transparent support for pagination using WillPaginate using POX (Plain Old Xml) and ActiveResource"
gemspec.authors = ["Sidu Ponnappa", "Niranjan Paranjape"]
gemspec.email = "opensource@c42.in"
gemspec.homepage = "http://github.com/kaiwren/wrest"
gemspec.has_rdoc = false
gemspec.require_path = "lib"
gemspec.files.exclude *['.gitignore']
gemspec.test_files.exclude *['.gitignore']
gemspec.add_dependency('activesupport', '>= 2.3.5')
gemspec.add_dependency('activeresource', '>= 2.3.5')
gemspec.add_dependency('activesupport', '>~ 2.3.5')
gemspec.add_dependency('activeresource', '>~ 2.3.5')
gemspec.add_dependency('will_paginate', '>= 2.3.12')
end

Expand Down
Empty file modified VERSION 100644 → 100755
Empty file.
4 changes: 3 additions & 1 deletion lib/pox_paginate.rb 100644 → 100755
@@ -1,7 +1,9 @@
require 'rubygems'
gem 'activeresource', '~> 2.3.5'
gem 'activesupport', '~> 2.3.5'
require 'active_resource'
require 'will_paginate'
require 'active_support'
require 'will_paginate'

module PoxPaginate
Root = File.dirname(__FILE__)
Expand Down
Empty file modified lib/pox_paginate/active_resource.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/active_resource/xml_format.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/active_support.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/active_support/core_hash_ext.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/remote_collection.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/will_paginate.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/will_paginate/collection_extensions.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/xml_mini.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/xml_mini/jdom.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/xml_mini/libxml.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/xml_mini/nokogiri.rb 100644 → 100755
Empty file.
Empty file modified lib/pox_paginate/xml_mini/rexml.rb 100644 → 100755
Empty file.
Empty file modified log/.gitignore 100644 → 100755
Empty file.
Empty file modified spec/config/database.yml 100644 → 100755
Empty file.
Empty file modified spec/db/migrate/001_create_oogas.rb 100644 → 100755
Empty file.
Empty file modified spec/pox_paginate/active_resource/xml_format_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/pox_paginate/active_support/core_hash_ext_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/pox_paginate/will_paginate/collection_extensions_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/pox_paginate/xml_mini_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/spec_helper.rb 100644 → 100755
Empty file.

0 comments on commit 6a81eef

Please sign in to comment.