simple_paginator 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 87774b2b162dfb8b751b0d6fc62edad2cf908bc3
4
- data.tar.gz: 6dc9d9c46e64dec41cd9293959a0baa57db1b57f
3
+ metadata.gz: 8f2849b7d941f9af41dde4fd22ae539ac1d505d5
4
+ data.tar.gz: e2f4c9261b998d51238de7df7a4ec0db0479f2e9
5
5
  SHA512:
6
- metadata.gz: f3e7d23adf47ff0fe785a812b1773ccc525ac617e583ba19b8eda6d060efbbc761079bdcd0ed59844178e15a3d8ba20ba24e03ccd6dc67af3a79d91a3f26af0e
7
- data.tar.gz: 9bafd34ea0590a27ce3141ef72b78e6df64f3c889b2a4c060115304da795456b8ae9c7e3499f54c4aab8e22bbb3a2e45c948bd0c8700d5b6d0f8f30af63f7a80
6
+ metadata.gz: c8d1ba19069ac6568ca32daa524b940e5dc290c45c6e41115b6b688ca41c510780665d581a84f3cdf943d3a92e12454fdcfb411ca9f4f1b0b9ff96232c4c0322
7
+ data.tar.gz: 1ca4e949eea9baf78583c1f3f2825658521a29c04ed49868696a0bfd89e52a151c4ee939c5d8e9f86d6f02a367f06ba5c38a9fd5d6a351d3640c303c85c2604c
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 1.9.3
5
+ - rbx-19mode
data/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # SimplePaginator
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/simple_paginator.png)](http://badge.fury.io/rb/simple_paginator)
4
+ [![Build Status](https://travis-ci.org/satococoa/simple_paginator.png?branch=master)](https://travis-ci.org/satococoa/simple_paginator)
5
+ [![Dependency Status](https://gemnasium.com/satococoa/simple_paginator.png)](https://gemnasium.com/satococoa/simple_paginator)
6
+ [![Code Climate](https://codeclimate.com/github/satococoa/simple_paginator.png)](https://codeclimate.com/github/satococoa/simple_paginator)
7
+
3
8
  This is a useful pagination library especially building APIs.
4
9
 
5
10
  ## Feature
@@ -1,3 +1,3 @@
1
1
  module SimplePaginator
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,5 +1,4 @@
1
1
  require "simple_paginator/version"
2
- require 'active_support/core_ext/class'
3
2
  require 'active_support/concern'
4
3
  require 'active_record'
5
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_paginator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Satoshi Ebisawa
@@ -103,6 +103,7 @@ extra_rdoc_files: []
103
103
  files:
104
104
  - .gitignore
105
105
  - .rspec
106
+ - .travis.yml
106
107
  - Gemfile
107
108
  - LICENSE.txt
108
109
  - README.ja.md