simple_endpoint 0.1.3 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55a2646d762faef9f9bd692892c9dc29837d1fb1a6683d776c4822a155ea15bc
4
- data.tar.gz: 4e05da905deeed9b872a3ad816a09c0d94a3f619506342ef64f1995f24c8cfbe
3
+ metadata.gz: '08fd87cf913813e20513e0e14925d45a4f9fdeb582f0db492641b4df3284e629'
4
+ data.tar.gz: 42e7eea35744ff8f43afae1fe342997048dd9c42b053d2b0e178ee667f9886f1
5
5
  SHA512:
6
- metadata.gz: 7a670e1db13967ebd1d89b6abc870cb206b63ed9688f8625b067e8300b6f4c84cbfb9bc67e6767d6e37a253abd64e1ee1d053302d3e6b4d20ff8895393bd66f7
7
- data.tar.gz: 284851163ebf6ccf7168aa9787408721cbdf5a7d2a7b8a2fb712f357cc6c1d6d9843fbe1ab33d592942b689e247a99646f597a316e93c4191141390e48de7cf6
6
+ metadata.gz: 2e473a5e5b115b0e15e03316683dfd952c0c368be5ad7db85f25b439e27fac4638bdca131548d04391d54d223cfa95faf22417b721897e83426896068fe2b1f6
7
+ data.tar.gz: 660bd34909b0d962ad41583f17219fe9b3108bc4a987a5acc1c8cb17ac4aece8e0b1a78c68b8600b243a0ddce2f6b263f6c6b573e472e72b705ad4f744b18150
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.3
2
+ TargetRubyVersion: 2.5.1
3
3
 
4
4
  Metrics/LineLength:
5
5
  Enabled: true
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ simple_endpoint
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.5.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_endpoint (0.1.3)
4
+ simple_endpoint (0.1.6)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -60,4 +60,4 @@ DEPENDENCIES
60
60
  simple_endpoint!
61
61
 
62
62
  BUNDLED WITH
63
- 1.16.2
63
+ 1.17.2
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SimpleEndpoint
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.6'
5
5
  end
@@ -11,8 +11,8 @@ Gem::Specification.new do |spec|
11
11
  spec.email = ['differencialx@gmail.com']
12
12
 
13
13
  spec.summary = 'Simple implementation of Trailblazer endpoint'
14
- spec.description = 'Simple implementation of Trailblazer endpoint'
15
- spec.homepage = ''
14
+ spec.description = 'Dry-matcher free implementation of trailblazer endpoint, with ability to redefine matchers and handlers behavior for separate controllers or actions.'
15
+ spec.homepage = 'https://github.com/differencialx/simple_endpoint'
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
18
  # to allow pushing to a single host or delete this section to allow pushing to any host.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_endpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Bal
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-15 00:00:00.000000000 Z
11
+ date: 2019-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,7 +80,8 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Simple implementation of Trailblazer endpoint
83
+ description: Dry-matcher free implementation of trailblazer endpoint, with ability
84
+ to redefine matchers and handlers behavior for separate controllers or actions.
84
85
  email:
85
86
  - differencialx@gmail.com
86
87
  executables: []
@@ -90,6 +91,8 @@ files:
90
91
  - ".gitignore"
91
92
  - ".rspec"
92
93
  - ".rubocop.yml"
94
+ - ".ruby-gemset"
95
+ - ".ruby-version"
93
96
  - ".travis.yml"
94
97
  - Gemfile
95
98
  - Gemfile.lock
@@ -101,7 +104,7 @@ files:
101
104
  - lib/simple_endpoint.rb
102
105
  - lib/simple_endpoint/version.rb
103
106
  - simple_endpoint.gemspec
104
- homepage: ''
107
+ homepage: https://github.com/differencialx/simple_endpoint
105
108
  licenses: []
106
109
  metadata:
107
110
  allowed_push_host: https://rubygems.org
@@ -121,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
124
  version: '0'
122
125
  requirements: []
123
126
  rubyforge_project:
124
- rubygems_version: 2.7.7
127
+ rubygems_version: 2.7.9
125
128
  signing_key:
126
129
  specification_version: 4
127
130
  summary: Simple implementation of Trailblazer endpoint