alphabetic_paginate 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDZhMmY2MzdjNTllMWZlYmUzODEwZTMyMmU3YWQ1N2Q5NTI2ZDA4Ng==
4
+ YmU2OTlhOTA4YTVjMzYyNWIxZGU3OGJmY2ZiMGRiODEyZjU0NjZhYw==
5
5
  data.tar.gz: !binary |-
6
- NGNlMzViM2FiZTBmODQ1N2NkMzdmNDczYzY4NzczMzNlNzViNzZmMA==
6
+ YTBhYzE3NmFkYTQ2NWNlN2Q5M2QzN2U0YzM3ZDI0NGVhN2YxODQxMg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NzE4NzY4ZmQ5NzdkNTdiYzEwMjc5ZDA0YTAwYzc2OTM0ODZjOGY5ZTQyNjdh
10
- ODQ4MjM4NTRkZjViYWI5ZTE3MGFjNGM5NGVjMDA0ZTk1ZDM1NmQ1OTIxNTY0
11
- OWU2MTc5ZGIyZDZhODRhY2MwMjUyNTFhNzU5NTJlOTljMDI4Yjk=
9
+ Yzc5NTNiMjlmYTVkZDYxMjY2ZTY2NDgyMzVlZTdkYzc5ZjVkNjBlMTRkMjNk
10
+ ZmU2ZWJhNmU2MzE2MWQ1ZGQ4YzczOTk1MTUwNzMwNTI3MTE0ODE0OTE0ZDUy
11
+ Yjc0ZmZiMzFlZTU5ZDViODY0ZjM4MzM5ZjE2OWMwMWZkMDU5MjM=
12
12
  data.tar.gz: !binary |-
13
- MDAyMGExYWExM2YzMjA4Y2FmNmQ3Mjc0MWMyMTNkMTYyOWFlOWMzNTRhNjk2
14
- MzVhMDU5ZDc2ZWYzMGI0MmJjM2RjNDQ2YWE3NDhkNzMxNTcxZGI0NTNhYTg0
15
- YmVjOGZmMzczNWEyMThmNTBkOWQ2NGViOTQxYzFhODk5NzZjOWY=
13
+ MTg3MDVmMWIyMTlkMzA0MDNhOWE1MWQwM2EwYjYwODIxZjNmZjJiNjZmZmM3
14
+ YTdlMDhhNjU2Nzg4NjZlNzcwNGE5N2VhZDRjYTUwZmVjMmM5NzM1ZWZjNmVk
15
+ OTFhYmEzYzUzNmI2MjY5NDgxNjgzYjY2OGQ1OWY3ZTdhN2NlNTI=
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in alphabetic_paginate.gemspec
4
+ gemspec
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");
@@ -1,3 +1,3 @@
1
1
  module AlphabeticPaginate
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -0,0 +1,5 @@
1
+ require 'alphabetic_paginate'
2
+
3
+ describe Alphabetic_paginate::Paginator do
4
+
5
+ end
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.10
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
- - README.md
110
- - LICENSE.txt
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