filterrific 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +10 -8
- data/lib/filterrific/engine.rb +2 -2
- data/lib/filterrific/version.rb +1 -1
- metadata +3 -73
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06bcb5b32f3075b59905bc1a15fbb83abcf704d0
|
4
|
+
data.tar.gz: 117381d9c1ed5a9aad0966ae0e8bc6944d68a0eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 550831affa696e747459d21d9047793bfc79e1a972003e6be1b8cd3c7750207a731b51c544164c181573d9d3e17129dfba6bf72f47517cdea2a32a6e8b5b0e95
|
7
|
+
data.tar.gz: 8f5f22cb2c2270421e6a07e47c127ee2dc8d3771c0ed7df5a3d47a36a6bad982eec9af88dd0f89a9890c4a2d7f7201c92dc1dda6c018eb448b8d2685e18e977e
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -26,17 +26,19 @@ or with bundler in your Gemfile:
|
|
26
26
|
|
27
27
|
Every commit to Filterrific is automatically tested against the following scenarios:
|
28
28
|
|
29
|
-
| Rails version | Ruby environments
|
30
|
-
|
31
|
-
| Rails 5.x | MRI
|
32
|
-
| Rails 4.2 | MRI
|
33
|
-
| Rails 4.1 | MRI
|
34
|
-
| Rails 4.0 | MRI
|
35
|
-
| Rails 3.2 | MRI
|
29
|
+
| Rails version | Ruby environments | Database adapters | Build status |
|
30
|
+
|---------------|--------------------------------|------------------------------------|--------------|
|
31
|
+
| Rails 5.x | MRI 2.0.0, 2.1.7, 2.2.3, 2.3.1 | mysql2, postgresql |[![Build Status](https://travis-ci.org/jhund/filterrific_demo.svg?branch=rails-5.x)](https://travis-ci.org/jhund/filterrific_demo)|
|
32
|
+
| Rails 4.2 | MRI 2.0.0, 2.1.7, 2.2.3, 2.3.1 | mysql, mysql2, postgresql, sqlite3 |[![Build Status](https://travis-ci.org/jhund/filterrific_demo.svg?branch=rails-4.2)](https://travis-ci.org/jhund/filterrific_demo)|
|
33
|
+
| Rails 4.1 | MRI 2.0.0, 2.1.7, 2.2.3, 2.3.1 | mysql, mysql2, postgresql, sqlite3 |[![Build Status](https://travis-ci.org/jhund/filterrific_demo.svg?branch=rails-4.1)](https://travis-ci.org/jhund/filterrific_demo)|
|
34
|
+
| Rails 4.0 | MRI 2.0.0, 2.1.7, 2.2.3, 2.3.1 | mysql, mysql2, postgresql, sqlite3 |[![Build Status](https://travis-ci.org/jhund/filterrific_demo.svg?branch=rails-4.0)](https://travis-ci.org/jhund/filterrific_demo)|
|
35
|
+
| Rails 3.2 | MRI 2.0.0, 2.1.7 | mysql, mysql2, postgresql, sqlite3 |[![Build Status](https://travis-ci.org/jhund/filterrific_demo.svg?branch=rails-3.2)](https://travis-ci.org/jhund/filterrific_demo)|
|
36
36
|
|
37
37
|
Filterrific version 1.x should work on older versions of Rails and Ruby, however
|
38
38
|
the 1.x branch is not supported any more.
|
39
39
|
|
40
|
+
Filterrific up to version 2.1.0 should work on Ruby 1.9.3, however we're not testing it any more. Time to move on to a more current version of Ruby.
|
41
|
+
|
40
42
|
|
41
43
|
### Guidelines for submitting issues
|
42
44
|
|
@@ -44,7 +46,7 @@ Please post questions related to usage at [StackOverflow](http://stackoverflow.c
|
|
44
46
|
|
45
47
|
If you think you've found a bug, or have a feature request, then create an issue here on Github. You'll make my job easier if you follow these guidelines:
|
46
48
|
|
47
|
-
* Please keep in mind that I do this in my spare time. I appreciate it if you first do everything you can on your own: read the detailed
|
49
|
+
* Please keep in mind that I do this in my spare time. To you this software is free as in `beer`, to me it's free as in `baby`. I appreciate it if you first do everything you can on your own: read the detailed [Filterrific documentation](http://filterrific.clearcove.ca), look for similar issues on [StackOverflow](http://stackoverflow.com/questions/tagged/filterrific), search the internets, etc.
|
48
50
|
* If you're stuck, give me sufficient context so that I have a chance to identify the issue:
|
49
51
|
* what version of filterrific are you using? (look in your `Gemfile.lock`)
|
50
52
|
* what version of Rails are you using? (look in your `Gemfile.lock`)
|
data/lib/filterrific/engine.rb
CHANGED
@@ -31,8 +31,8 @@ module Filterrific
|
|
31
31
|
# sprockets-rails 3 tracks down the calls to `font_path` and `image_path`
|
32
32
|
# and automatically precompiles the referenced assets.
|
33
33
|
unless Rails::VERSION::MAJOR < 5
|
34
|
-
initializer "filterrific
|
35
|
-
app.config.assets.precompile += %w(filterrific
|
34
|
+
initializer "filterrific" do |app|
|
35
|
+
app.config.assets.precompile += %w(filterrific-spinner.gif)
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
data/lib/filterrific/version.rb
CHANGED
metadata
CHANGED
@@ -1,85 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: filterrific
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jo Hund
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: rails
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 3.1.0
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 3.1.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: bundler
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.6.1
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 1.6.1
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: gem-release
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 0.7.3
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.7.3
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rake
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 10.3.2
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: 10.3.2
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: wwtd
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 0.5.5
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: 0.5.5
|
11
|
+
date: 2016-11-11 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
83
13
|
description: Filterrific is a Rails Engine plugin that makes it easy to filter, search,
|
84
14
|
and sort your ActiveRecord lists.
|
85
15
|
email: jhund@clearcove.ca
|