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 +4 -4
- data/.rubocop.yml +1 -1
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile.lock +2 -2
- data/lib/simple_endpoint/version.rb +1 -1
- data/simple_endpoint.gemspec +2 -2
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08fd87cf913813e20513e0e14925d45a4f9fdeb582f0db492641b4df3284e629'
|
|
4
|
+
data.tar.gz: 42e7eea35744ff8f43afae1fe342997048dd9c42b053d2b0e178ee667f9886f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e473a5e5b115b0e15e03316683dfd952c0c368be5ad7db85f25b439e27fac4638bdca131548d04391d54d223cfa95faf22417b721897e83426896068fe2b1f6
|
|
7
|
+
data.tar.gz: 660bd34909b0d962ad41583f17219fe9b3108bc4a987a5acc1c8cb17ac4aece8e0b1a78c68b8600b243a0ddce2f6b263f6c6b573e472e72b705ad4f744b18150
|
data/.rubocop.yml
CHANGED
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
data/simple_endpoint.gemspec
CHANGED
|
@@ -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 = '
|
|
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.
|
|
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-
|
|
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:
|
|
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.
|
|
127
|
+
rubygems_version: 2.7.9
|
|
125
128
|
signing_key:
|
|
126
129
|
specification_version: 4
|
|
127
130
|
summary: Simple implementation of Trailblazer endpoint
|