jscrollpane-rails 2.2.3.pre.rc.1 → 2.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -1
- data/lib/jscrollpane-rails/version.rb +1 -1
- metadata +25 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b8d8c438b7b92a0bd80267c8f55880250d6bb27e19002187d5ef9b47f54378f
|
4
|
+
data.tar.gz: 556b0530dc7d08ea187ad77885fc166431f3388ef0caef6fea5d42871c976141
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9376babdcb7796cd64fb64ea2397e1f3937ba382910c665df30b31071ed37f6d61725c8aa94c3c6a5f4db2c6a37a94532fc7954b9939bb9e9cfb1e05913909d7
|
7
|
+
data.tar.gz: d458b596da74badd53ac38440a9d19fb7c74ab1ee50837f03d5f8c680dffc8e7c3f42f9ec08e05598d28173a859da4845c4ff11199579c2144beb9d7e888c34f
|
data/README.md
CHANGED
@@ -1,13 +1,26 @@
|
|
1
1
|
# jScrollPane plugin for Rails
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/jscrollpane-rails.svg)](http://badge.fury.io/rb/jscrollpane-rails)
|
4
|
-
[![Build Status](https://travis-ci.
|
4
|
+
[![Build Status](https://travis-ci.com/bodrovis/jscrollpane-rails.svg?branch=master)](https://travis-ci.com/github/bodrovis/jscrollpane-rails)
|
5
|
+
![Downloads total](https://img.shields.io/gem/dt/jscrollpane-rails)
|
5
6
|
|
6
7
|
A Ruby gem that uses the Rails asset pipeline to include the jScrollPane plugin by Kelvin Luck and Tuukka Pasanen:
|
7
8
|
|
8
9
|
* [Library's homepage](http://jscrollpane.kelvinluck.com/)
|
9
10
|
* [Source code](https://github.com/vitch/jScrollPane)
|
10
11
|
|
12
|
+
## DEPRECATION NOTICE
|
13
|
+
|
14
|
+
This gem was created in 2013 and since then it has been downloaded more than 41k times. I'm glad you guys found it useful! However, it's time to move on. Rails 6 uses Webpacker as a de-facto standard to bundle assets therefore **this gem became redundant for setups that utilize Webpacker or other bundlers like esbuild**. Moreover, Rails 7 is coming in December 2021 and this new version uses another modern approach: you can rely on [jsbundling-rails](https://github.com/rails/jsbundling-rails) and choose your favourite bundler (Webpacker, esbuild, rollup). Basically, it means that it's not recommended to install front-end packages as Ruby gems anymore.
|
15
|
+
|
16
|
+
Another thing to mention is that **jScrollPane itself was abandoned** by its maintainer: there were no stable releases for years.
|
17
|
+
|
18
|
+
Therefore, **jscrollpane-rails** is officially deprecated since December, 2021. **Version 2.2.4 is the final release** I'm going to roll out: it is tested with Rails 7 so it should still work fine with older setups. But once again: it's very much recommended to migrate to jsbundling-rails or Webpacker.
|
19
|
+
|
20
|
+
Thank you for your attention, and hopefully you'll find [my other solutions useful](https://rubygems.org/profiles/bodrovis).
|
21
|
+
|
22
|
+
*Ilya Bodrov-Krukowski*
|
23
|
+
|
11
24
|
## Installation
|
12
25
|
|
13
26
|
Add this line to your application's Gemfile:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jscrollpane-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Bodrov
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -26,18 +26,32 @@ dependencies:
|
|
26
26
|
version: '3.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 7.0.0.rc1
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 7.0.0.rc1
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sprockets-rails
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - "~>"
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
47
|
+
version: '3.4'
|
34
48
|
type: :development
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - "~>"
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
54
|
+
version: '3.4'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: test-unit
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,7 +67,7 @@ dependencies:
|
|
53
67
|
- !ruby/object:Gem::Version
|
54
68
|
version: '3.1'
|
55
69
|
description: A ruby gem that uses the Rails asset pipeline to include the jScrollPane
|
56
|
-
plugin by Kelvin Luck and Tuukka Pasanen
|
70
|
+
plugin by Kelvin Luck and Tuukka Pasanen. THIS GEM IS DEPRECATED.
|
57
71
|
email:
|
58
72
|
- golosizpru@gmail.com
|
59
73
|
executables: []
|
@@ -70,7 +84,7 @@ homepage: https://github.com/bodrovis/jscrollpane-rails
|
|
70
84
|
licenses:
|
71
85
|
- MIT
|
72
86
|
metadata: {}
|
73
|
-
post_install_message:
|
87
|
+
post_install_message:
|
74
88
|
rdoc_options: []
|
75
89
|
require_paths:
|
76
90
|
- lib
|
@@ -81,12 +95,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
95
|
version: '0'
|
82
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
97
|
requirements:
|
84
|
-
- - "
|
98
|
+
- - ">="
|
85
99
|
- !ruby/object:Gem::Version
|
86
|
-
version:
|
100
|
+
version: '0'
|
87
101
|
requirements: []
|
88
|
-
rubygems_version: 3.
|
89
|
-
signing_key:
|
102
|
+
rubygems_version: 3.2.33
|
103
|
+
signing_key:
|
90
104
|
specification_version: 4
|
91
105
|
summary: Includes javascript and css files for the jScrollPane plugin.
|
92
106
|
test_files: []
|