sort_n_params 1.0.2 → 1.0.3
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 +4 -4
- data/Gemfile +6 -0
- data/MIT-LICENSE +17 -0
- data/Rakefile +6 -0
- data/sort_n_params.gemspec +36 -0
- metadata +5 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8d7d660d21516f59a4a914359a26d53a20fdc3699793e0928957546baee823e
|
4
|
+
data.tar.gz: 928b68de9c0da24d7d454f445dbfe2b2cdfcd1a55762b9fd226edf86a85ec25f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '093b2206de1545750e2da682723fb6c725d6ca907156ccd7068edd827d87923f46ca100887d7a9f8d1f47923c1230214db6aca59a312a8da949291810637861a'
|
7
|
+
data.tar.gz: 431f0adadd6e5fc19f105afa7eac5a2ed3ea7d0471363473af5ba896e2b6c35f3d3ea4b2963cdb9f72955312c36cc8df1cfe59a01437ab005db6737f2e66ff32
|
data/Gemfile
ADDED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Copyright 2019 Juan Francisco Ferrari
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to use,
|
6
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
7
|
+
Software, and to permit persons to whom the Software is furnished to do so,
|
8
|
+
subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included
|
11
|
+
in all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
14
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
15
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
16
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
17
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'sort_n_params'
|
3
|
+
s.version = '1.0.3'
|
4
|
+
s.date = '2019-05-07'
|
5
|
+
s.summary = "Sort N Params"
|
6
|
+
s.description = "Make your html <tables> sortables with N <th> parameters this gem."
|
7
|
+
s.authors = ["Juan Francisco Ferrari"]
|
8
|
+
s.email = 'juannferrari@gmail.com'
|
9
|
+
s.require_paths = ["lib"]
|
10
|
+
s.files = [
|
11
|
+
"Gemfile",
|
12
|
+
"MIT-LICENSE",
|
13
|
+
"Rakefile",
|
14
|
+
"sort_n_params.gemspec",
|
15
|
+
"lib/sort_n_params.rb",
|
16
|
+
"lib/sort_n_params/sortable.rb",
|
17
|
+
"lib/sort_n_params/sort_helpers.rb",
|
18
|
+
"lib/sort_n_params/concerns/scopes.rb",
|
19
|
+
"spec/spec_helper.rb",
|
20
|
+
"spec/sortable_spec.rb"
|
21
|
+
]
|
22
|
+
s.homepage =
|
23
|
+
'https://github.com/JuannFerrari/sort_n_params'
|
24
|
+
s.license = 'MIT'
|
25
|
+
|
26
|
+
|
27
|
+
s.add_development_dependency "bundler"
|
28
|
+
s.add_development_dependency "factory_bot", "~> 4.0"
|
29
|
+
s.add_development_dependency "pry-byebug"
|
30
|
+
s.add_development_dependency "rake", "~> 10.0"
|
31
|
+
s.add_development_dependency "rspec", "~> 3.0"
|
32
|
+
|
33
|
+
s.add_dependency(%q<rails>.freeze, ["~> 5.0"])
|
34
|
+
s.add_dependency(%q<nokogiri>.freeze, [">= 0"])
|
35
|
+
s.add_dependency(%q<rake>.freeze, ["~> 10.1"])
|
36
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sort_n_params
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Francisco Ferrari
|
@@ -128,10 +128,14 @@ executables: []
|
|
128
128
|
extensions: []
|
129
129
|
extra_rdoc_files: []
|
130
130
|
files:
|
131
|
+
- Gemfile
|
132
|
+
- MIT-LICENSE
|
133
|
+
- Rakefile
|
131
134
|
- lib/sort_n_params.rb
|
132
135
|
- lib/sort_n_params/concerns/scopes.rb
|
133
136
|
- lib/sort_n_params/sort_helpers.rb
|
134
137
|
- lib/sort_n_params/sortable.rb
|
138
|
+
- sort_n_params.gemspec
|
135
139
|
- spec/sortable_spec.rb
|
136
140
|
- spec/spec_helper.rb
|
137
141
|
homepage: https://github.com/JuannFerrari/sort_n_params
|