alphabetic_paginate 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/alphabetic_paginate.gemspec +28 -0
- data/app/assets/javascripts/alphabetic_paginate/index.js +1 -0
- data/lib/alphabetic_paginate/version.rb +1 -1
- data/spec/alphabetic_paginate_spec.rb +5 -0
- metadata +13 -5
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YmU2OTlhOTA4YTVjMzYyNWIxZGU3OGJmY2ZiMGRiODEyZjU0NjZhYw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTBhYzE3NmFkYTQ2NWNlN2Q5M2QzN2U0YzM3ZDI0NGVhN2YxODQxMg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Yzc5NTNiMjlmYTVkZDYxMjY2ZTY2NDgyMzVlZTdkYzc5ZjVkNjBlMTRkMjNk
|
|
10
|
+
ZmU2ZWJhNmU2MzE2MWQ1ZGQ4YzczOTk1MTUwNzMwNTI3MTE0ODE0OTE0ZDUy
|
|
11
|
+
Yjc0ZmZiMzFlZTU5ZDViODY0ZjM4MzM5ZjE2OWMwMWZkMDU5MjM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTg3MDVmMWIyMTlkMzA0MDNhOWE1MWQwM2EwYjYwODIxZjNmZjJiNjZmZmM3
|
|
14
|
+
YTdlMDhhNjU2Nzg4NjZlNzcwNGE5N2VhZDRjYTUwZmVjMmM5NzM1ZWZjNmVk
|
|
15
|
+
OTFhYmEzYzUzNmI2MjY5NDgxNjgzYjY2OGQ1OWY3ZTdhN2NlNTI=
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'alphabetic_paginate/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "alphabetic_paginate"
|
|
8
|
+
spec.version = AlphabeticPaginate::VERSION
|
|
9
|
+
spec.authors = ["Oleg Grishin", "Linglian Zhang"]
|
|
10
|
+
spec.email = ["og402@nyu.edu", "lz781@nyu.edu"]
|
|
11
|
+
spec.description = "Paginates in alphabetic groups"
|
|
12
|
+
spec.summary = "Creates pagination where all data is sorted into pages based on the first letter of the sorting value"
|
|
13
|
+
spec.homepage = "https://github.com/grishinoleg/alphabetic_paginate"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
|
|
16
|
+
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ["lib","app"]
|
|
20
|
+
|
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
|
+
spec.add_development_dependency "rake"
|
|
23
|
+
spec.add_development_dependency "rspec", "~> 2.6"
|
|
24
|
+
spec.add_dependency "i18n", "~> 0.6.1"
|
|
25
|
+
spec.add_dependency "activesupport"
|
|
26
|
+
spec.add_dependency "railties", "~> 3.1"
|
|
27
|
+
|
|
28
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
alert("hello");
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alphabetic_paginate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oleg Grishin
|
|
@@ -103,11 +103,17 @@ executables: []
|
|
|
103
103
|
extensions: []
|
|
104
104
|
extra_rdoc_files: []
|
|
105
105
|
files:
|
|
106
|
+
- .gitignore
|
|
107
|
+
- Gemfile
|
|
108
|
+
- LICENSE.txt
|
|
109
|
+
- README.md
|
|
110
|
+
- Rakefile
|
|
111
|
+
- alphabetic_paginate.gemspec
|
|
112
|
+
- app/assets/javascripts/alphabetic_paginate/index.js
|
|
106
113
|
- lib/alphabetic_paginate.rb
|
|
107
|
-
- lib/alphabetic_paginate/version.rb
|
|
108
114
|
- lib/alphabetic_paginate/paginator.rb
|
|
109
|
-
-
|
|
110
|
-
-
|
|
115
|
+
- lib/alphabetic_paginate/version.rb
|
|
116
|
+
- spec/alphabetic_paginate_spec.rb
|
|
111
117
|
homepage: https://github.com/grishinoleg/alphabetic_paginate
|
|
112
118
|
licenses:
|
|
113
119
|
- MIT
|
|
@@ -116,6 +122,7 @@ post_install_message:
|
|
|
116
122
|
rdoc_options: []
|
|
117
123
|
require_paths:
|
|
118
124
|
- lib
|
|
125
|
+
- app
|
|
119
126
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
120
127
|
requirements:
|
|
121
128
|
- - ! '>='
|
|
@@ -133,4 +140,5 @@ signing_key:
|
|
|
133
140
|
specification_version: 4
|
|
134
141
|
summary: Creates pagination where all data is sorted into pages based on the first
|
|
135
142
|
letter of the sorting value
|
|
136
|
-
test_files:
|
|
143
|
+
test_files:
|
|
144
|
+
- spec/alphabetic_paginate_spec.rb
|