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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +6 -0
  3. data/MIT-LICENSE +17 -0
  4. data/Rakefile +6 -0
  5. data/sort_n_params.gemspec +36 -0
  6. metadata +5 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf597fdee3ef14cd303a2cc400fef9aa8a85c43ac1aaee3154f97781553db993
4
- data.tar.gz: af249d92dd15af32406513f1f090ea51a5fdc57332a86313f5544e0c195ca1dd
3
+ metadata.gz: f8d7d660d21516f59a4a914359a26d53a20fdc3699793e0928957546baee823e
4
+ data.tar.gz: 928b68de9c0da24d7d454f445dbfe2b2cdfcd1a55762b9fd226edf86a85ec25f
5
5
  SHA512:
6
- metadata.gz: 4dbfd4f0db84fd233cf2e081b25939b82dfec4648a33f7e1f3eee566c782caeac9dd4e109ce89d0f87484c18dacf626abf5263d1ee102e4dd777fe6b605dff8d
7
- data.tar.gz: 3ef307e2e4ffd4b9da726854c45b23adf25dbb9b507a9ecd6d392f7dd6fa9ebeb3295e6c99aff056b49955d47ab97d0fb64207cfe803fb5e4cff561b0fa71c8b
6
+ metadata.gz: '093b2206de1545750e2da682723fb6c725d6ca907156ccd7068edd827d87923f46ca100887d7a9f8d1f47923c1230214db6aca59a312a8da949291810637861a'
7
+ data.tar.gz: 431f0adadd6e5fc19f105afa7eac5a2ed3ea7d0471363473af5ba896e2b6c35f3d3ea4b2963cdb9f72955312c36cc8df1cfe59a01437ab005db6737f2e66ff32
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in invoice_client.gemspec
6
+ gemspec
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,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -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.2
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