forked from magoosh/jquery-infinite-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in redactor-rails.gemspec | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- encoding: utf-8 -*- | ||
require File.expand_path('../lib/jquery-infinite-pages/version', __FILE__) | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "jquery-infinite-pages" | ||
s.version = JqueryInfinitePages::VERSION | ||
s.licenses = ["MIT"] | ||
s.summary = "Infinite pages for jQuery + Rails" | ||
s.description = "A light-weight infinite scrolling jQuery plugin, wrapped in a gem for Rails" | ||
s.authors = ["Zach Millman"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://github.com/magoosh/jquery-infinite-pages" | ||
s.files = Dir["{lib,app}/**/*"] + ["LICENSE", "README.md"] | ||
|
||
s.add_dependency "jquery-rails" | ||
s.add_dependency "railties", ">= 3.1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
require 'jquery-infinite-pages/version' | ||
require 'jquery-infinite-pages/engine' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module JqueryInfinitePages | ||
class Engine < ::Rails::Engine | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module JqueryInfinitePages | ||
VERSION = "0.1.1" | ||
end |