diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/README.rdoc b/README.rdoc old mode 100644 new mode 100755 diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 index ea3757e..a263f38 --- a/Rakefile +++ b/Rakefile @@ -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 @@ -17,7 +16,7 @@ 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" @@ -25,8 +24,8 @@ begin 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 diff --git a/VERSION b/VERSION old mode 100644 new mode 100755 diff --git a/lib/pox_paginate.rb b/lib/pox_paginate.rb old mode 100644 new mode 100755 index 391528c..82e30da --- a/lib/pox_paginate.rb +++ b/lib/pox_paginate.rb @@ -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__) diff --git a/lib/pox_paginate/active_resource.rb b/lib/pox_paginate/active_resource.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/active_resource/xml_format.rb b/lib/pox_paginate/active_resource/xml_format.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/active_support.rb b/lib/pox_paginate/active_support.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/active_support/core_hash_ext.rb b/lib/pox_paginate/active_support/core_hash_ext.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/remote_collection.rb b/lib/pox_paginate/remote_collection.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/will_paginate.rb b/lib/pox_paginate/will_paginate.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/will_paginate/collection_extensions.rb b/lib/pox_paginate/will_paginate/collection_extensions.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/xml_mini.rb b/lib/pox_paginate/xml_mini.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/xml_mini/jdom.rb b/lib/pox_paginate/xml_mini/jdom.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/xml_mini/libxml.rb b/lib/pox_paginate/xml_mini/libxml.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/xml_mini/nokogiri.rb b/lib/pox_paginate/xml_mini/nokogiri.rb old mode 100644 new mode 100755 diff --git a/lib/pox_paginate/xml_mini/rexml.rb b/lib/pox_paginate/xml_mini/rexml.rb old mode 100644 new mode 100755 diff --git a/log/.gitignore b/log/.gitignore old mode 100644 new mode 100755 diff --git a/spec/config/database.yml b/spec/config/database.yml old mode 100644 new mode 100755 diff --git a/spec/db/migrate/001_create_oogas.rb b/spec/db/migrate/001_create_oogas.rb old mode 100644 new mode 100755 diff --git a/spec/pox_paginate/active_resource/xml_format_spec.rb b/spec/pox_paginate/active_resource/xml_format_spec.rb old mode 100644 new mode 100755 diff --git a/spec/pox_paginate/active_support/core_hash_ext_spec.rb b/spec/pox_paginate/active_support/core_hash_ext_spec.rb old mode 100644 new mode 100755 diff --git a/spec/pox_paginate/will_paginate/collection_extensions_spec.rb b/spec/pox_paginate/will_paginate/collection_extensions_spec.rb old mode 100644 new mode 100755 diff --git a/spec/pox_paginate/xml_mini_spec.rb b/spec/pox_paginate/xml_mini_spec.rb old mode 100644 new mode 100755 diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb old mode 100644 new mode 100755