fetcheable_on_api 0.1.0 → 0.1.1

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: e306962ed07df291f4da84e7a48ea260f4da40dd
4
- data.tar.gz: 9feabe197b5dada9b5f6d6da92f4a1689c069667
3
+ metadata.gz: 5006d8ade0d23b31a507298ca3fd128a9007f9ad
4
+ data.tar.gz: d7c7e3b94a881bedcb86e31530ae7b2835e94c7c
5
5
  SHA512:
6
- metadata.gz: ec029100a872fd1b7b271f462511a155d6c78995ee9a7c07758f92bbc9ba45cdb716fe99060897ecca10c5aa4d8cb690cdded97a2599d6ff031e890e80377ea0
7
- data.tar.gz: 86e4291e7a000d6116bc9f9d520860ed1fb9e725310c4f8faed50f2abb7a1ca944288955e949d93377499c19ec0ac1c058f7815c37bc325b219a4f1f49ae0632
6
+ metadata.gz: '076778c141f6f482f38f7e7d47b9533e76ac2c2955b16c5f5fd142f4c177113a61abdc2d9757ae8846c2e7f92fdb8e58771c990ea7bf7defc9bc5f33117853c1'
7
+ data.tar.gz: ceaf193da398f7feafdaae1e184282d7e92d997c278ef7ad0f55830b7ce594cc40e01edd1b3bcb69a1ab4301944cca9be51901bee5b9a618546dd1a5b10ede44
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fetcheable_on_api (0.1.0)
4
+ fetcheable_on_api (0.1.1)
5
5
  activesupport (>= 4.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -325,7 +325,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
325
325
 
326
326
  ## Contributing
327
327
 
328
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fetcheable_on_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
328
+ Bug reports and pull requests are welcome on GitHub at https://github.com/FabienPiette/fetcheable_on_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
329
329
 
330
330
  ## License
331
331
 
@@ -333,4 +333,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
333
333
 
334
334
  ## Code of Conduct
335
335
 
336
- Everyone interacting in the FetcheableOnApi project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/fetcheable_on_api/blob/master/CODE_OF_CONDUCT.md).
336
+ Everyone interacting in the FetcheableOnApi project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/FabienPiette/fetcheable_on_api/blob/master/CODE_OF_CONDUCT.md).
@@ -39,5 +39,5 @@ module FetcheableOnApi
39
39
  end
40
40
 
41
41
  ActiveSupport.on_load :action_controller do
42
- include Fetcheable
42
+ include FetcheableOnApi
43
43
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FetcheableOnApi
4
- VERSION = '0.1.0'.freeze
4
+ VERSION = '0.1.1'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fetcheable_on_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabien
@@ -87,24 +87,12 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
- - ".gitignore"
91
- - ".rspec"
92
- - ".travis.yml"
93
90
  - CODE_OF_CONDUCT.md
94
91
  - Gemfile
95
92
  - Gemfile.lock
96
93
  - LICENSE.txt
97
94
  - README.md
98
95
  - Rakefile
99
- - bin/console
100
- - bin/setup
101
- - fetcheable_on_api.gemspec
102
- - gemfiles/rails_4.1.gemfile
103
- - gemfiles/rails_4.2.gemfile
104
- - gemfiles/rails_5.0.gemfile
105
- - gemfiles/rails_5.1.gemfile
106
- - gemfiles/rails_5.2.gemfile
107
- - gemfiles/rails_head.gemfile
108
96
  - lib/fetcheable_on_api.rb
109
97
  - lib/fetcheable_on_api/filtreable.rb
110
98
  - lib/fetcheable_on_api/pagineable.rb
data/.gitignore DELETED
@@ -1,11 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # rspec failure tracking
11
- .rspec_status
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.4.3
7
- before_install: gem install bundler -v 1.16.5
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'fetcheable_on_api'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,47 +0,0 @@
1
- lib = File.expand_path('lib', __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'fetcheable_on_api/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'fetcheable_on_api'
7
- spec.version = FetcheableOnApi::VERSION
8
- spec.authors = ['Fabien']
9
- spec.email = ['fab.piette@gmail.com']
10
-
11
- spec.summary = 'A controller filters engine gem'\
12
- ' based on jsonapi spec.'
13
- spec.description = 'A controller filters engine gem'\
14
- ' based on jsonapi spec.'
15
- spec.homepage = 'https://github.com/FabienPiette/fetcheable_on_api.git'
16
- spec.license = 'MIT'
17
-
18
- # Prevent pushing this gem to RubyGems.org.
19
- # To allow pushes either set the 'allowed_push_host'
20
- # to allow pushing to a single host or delete
21
- # this section to allow pushing to any host.
22
- if spec.respond_to?(:metadata)
23
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
24
- else
25
- raise 'RubyGems 2.0 or newer is required to protect against ' \
26
- 'public gem pushes.'
27
- end
28
-
29
- # Specify which files should be added to
30
- # the gem when it is released.
31
- # The `git ls-files -z` loads the files in
32
- # the RubyGem that have been added into git.
33
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
34
- `git ls-files -z`.split("\x0")
35
- .reject { |f| f.match(%r{^(test|spec|features)/}) }
36
- end
37
- spec.bindir = 'exe'
38
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
39
- spec.require_paths = ['lib']
40
-
41
- spec.add_dependency 'activesupport', '>= 4.1'
42
-
43
- spec.add_development_dependency 'bundler', '~> 1.16'
44
- spec.add_development_dependency 'rake', '~> 10.0'
45
- spec.add_development_dependency 'rspec', '~> 3.0'
46
- spec.add_development_dependency 'rubocop', '~> 0.59.2'
47
- end
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "activesupport", "~> 4.1.0"
4
-
5
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "activesupport", "~> 4.2.0"
4
-
5
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "activesupport", "~> 5.0.0"
4
-
5
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "activesupport", "~> 5.1.0"
4
-
5
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "activesupport", "~> 5.2.0"
4
-
5
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem 'activesupport', github: 'rails/rails'
4
-
5
- gemspec path: "../"