Sha256: c8b9c22f247a232a6ae384bbc1e2b8c7eee831a79dcdcc552c7aa0870604a2cb
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "ajax_pagination/version" Gem::Specification.new do |s| s.name = "ajax_pagination" s.version = AjaxPagination::VERSION s.authors = ["Ronald Ping Man Chan"] s.email = ["ronalchn@gmail.com"] s.homepage = "https://github.com/ronalchn/ajax_pagination" s.summary = %q{Handles AJAX pagination, changing the content when certain links are followed.} s.description = %q{Handles AJAX pagination for you, by hooking up the links you want to load content with javascript in designated page containers. Each webpage can have multiple page containers, each with a different set of pagination links. The page containers can be nested. Degrades gracefully when javascript is disabled.} s.rubyforge_project = "ajax_pagination" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] # specify any dependencies here; for example: s.add_development_dependency "rake" s.add_development_dependency "rspec-rails" s.add_development_dependency "sqlite3" s.add_development_dependency "will_paginate" s.add_development_dependency "capybara" s.add_runtime_dependency "rails", '>= 3.1' s.add_runtime_dependency "jquery-rails", '>= 1.0' s.add_runtime_dependency "jquery-historyjs" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ajax_pagination-0.1.0 | ajax_pagination.gemspec |