querylicious 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +80 -0
- data/CHANGELOG.md +15 -8
- data/README.md +4 -5
- data/VERSION +1 -1
- data/querylicious.gemspec +6 -1
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7184b4227c98c1d78d5f54eabc1764ad7d39bfccaacc343eaf3b66c12bbc36b
|
4
|
+
data.tar.gz: 4219288dd5c2adf845c7295883f00b9312da3c85d8b5a224a603428623c6980e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae1e231cf481c1285c75055bd1fe1d7ee3c6f0c70faf19f5de938c84b4dac4f2719132ac282bb3911e4e57305fc87a58d08e7452e2a38afe9ef8258fe3d1e422
|
7
|
+
data.tar.gz: e666f8691d3e6e471f58be9efb96c933993b8f174342beeff701a8c62f757673a686e94293d02bbe17dd62da389f2f50205c345cf3320709bfc50225b9879db6
|
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# This file is a template, and might need editing before it works on your project.
|
2
|
+
# Official language image. Look for the different tagged releases at:
|
3
|
+
# https://hub.docker.com/r/library/ruby/tags/
|
4
|
+
image: "ruby:2.5"
|
5
|
+
|
6
|
+
# Cache gems in between builds
|
7
|
+
cache:
|
8
|
+
paths:
|
9
|
+
- vendor/ruby
|
10
|
+
|
11
|
+
variables:
|
12
|
+
JRUBY_OPTS: "--debug"
|
13
|
+
|
14
|
+
before_script:
|
15
|
+
- ruby -v # Print out ruby version for debugging
|
16
|
+
- apt update
|
17
|
+
- apt install git build-essential -y
|
18
|
+
- gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image
|
19
|
+
- bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby
|
20
|
+
|
21
|
+
# Optional - Delete if not using `rubocop`
|
22
|
+
rubocop:
|
23
|
+
script:
|
24
|
+
- bundle exec rubocop --version
|
25
|
+
- bundle exec rubocop --extra-details --display-style-guide --format clang
|
26
|
+
allow_failure: true
|
27
|
+
|
28
|
+
reek:
|
29
|
+
script:
|
30
|
+
- bundle exec reek --version
|
31
|
+
- bundle exec reek
|
32
|
+
allow_failure: true
|
33
|
+
|
34
|
+
rspec:2.3:
|
35
|
+
image: "ruby:2.3"
|
36
|
+
script:
|
37
|
+
- bundle exec rspec spec
|
38
|
+
|
39
|
+
rspec:2.4:
|
40
|
+
image: "ruby:2.4"
|
41
|
+
script:
|
42
|
+
- bundle exec rspec spec
|
43
|
+
|
44
|
+
rspec:
|
45
|
+
script:
|
46
|
+
- bundle exec rspec spec
|
47
|
+
artifacts:
|
48
|
+
paths:
|
49
|
+
- coverage/
|
50
|
+
expire_in: 30 days
|
51
|
+
|
52
|
+
rspec:2.6-rc:
|
53
|
+
image: "ruby:2.6-rc"
|
54
|
+
script:
|
55
|
+
- bundle exec rspec spec
|
56
|
+
allow_failure: true
|
57
|
+
|
58
|
+
rspec:jruby:9.1:
|
59
|
+
image: "jruby:9.1"
|
60
|
+
script:
|
61
|
+
- bundle exec rspec spec
|
62
|
+
|
63
|
+
rspec:jruby:9.2:
|
64
|
+
image: "jruby:9.2"
|
65
|
+
script:
|
66
|
+
- bundle exec rspec spec
|
67
|
+
|
68
|
+
pages:
|
69
|
+
stage: deploy
|
70
|
+
dependencies:
|
71
|
+
- rspec
|
72
|
+
script:
|
73
|
+
- mkdir -p public/
|
74
|
+
- mv coverage/ public/
|
75
|
+
artifacts:
|
76
|
+
paths:
|
77
|
+
- public
|
78
|
+
expire_in: 30 days
|
79
|
+
only:
|
80
|
+
- master
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.4.1] - 2018-09-16
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Changed readme and gem metadata for move to GitLab
|
15
|
+
|
10
16
|
## [0.4.0] - 2018-05-07
|
11
17
|
|
12
18
|
### Changed
|
@@ -60,12 +66,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
60
66
|
|
61
67
|
- Initial implementation of querylicious, with query-parser and query-reducer
|
62
68
|
|
63
|
-
[
|
69
|
+
[gitlab-repo]: https://gitlab.com/huyderman/querylicious
|
64
70
|
|
65
|
-
[Unreleased]: https://
|
66
|
-
[0.4.
|
67
|
-
[0.
|
68
|
-
[0.3.
|
69
|
-
[0.3.
|
70
|
-
[0.
|
71
|
-
[0.
|
71
|
+
[Unreleased]: https://gitlab.com/huyderman/querylicious/compare/v0.4.1...HEAD
|
72
|
+
[0.4.1]: https://gitlab.com/huyderman/querylicious/compare/v0.4.0...v0.4.1
|
73
|
+
[0.4.0]: https://gitlab.com/huyderman/querylicious/compare/v0.3.2...v0.4.0
|
74
|
+
[0.3.2]: https://gitlab.com/huyderman/querylicious/compare/v0.3.1...v0.3.2
|
75
|
+
[0.3.1]: https://gitlab.com/huyderman/querylicious/compare/v0.3.0...v0.3.1
|
76
|
+
[0.3.0]: https://gitlab.com/huyderman/querylicious/compare/v0.2.0...v0.3.0
|
77
|
+
[0.2.0]: https://gitlab.com/huyderman/querylicious/compare/v0.1.0...v0.2.0
|
78
|
+
[0.1.0]: https://gitlab.com/huyderman/querylicious/compare/v0.0.0...v0.1.0
|
data/README.md
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# ![Querylicious](https://res.cloudinary.com/huyderman/image/upload/c_scale,dpr_2,f_auto,fl_preserve_transparency,q_auto,w_888/v1522834080/querylicious)
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/querylicious.svg)](https://badge.fury.io/rb/querylicious)
|
4
|
-
[![Build Status](https://
|
5
|
-
[![
|
6
|
-
[![Test Coverage](https://api.codeclimate.com/v1/badges/6eeb81253ec37a703d9f/test_coverage)](https://codeclimate.com/github/huyderman/querylicious/test_coverage)
|
4
|
+
[![Build Status](https://gitlab.com/huyderman/querylicious/badges/master/build.svg)](https://gitlab.com/huyderman/querylicious/pipelines)
|
5
|
+
[![Coverage](https://gitlab.com/huyderman/querylicious/badges/master/coverage.svg?job=rspec)](http://huyderman.gitlab.io/querylicious/coverage)
|
7
6
|
[![Join the chat at https://gitter.im/querylicious/Lobby](https://badges.gitter.im/querylicious/Lobby.svg)](https://gitter.im/querylicious/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
8
7
|
|
9
8
|
> Querylicious is an opinionated and repository agnostic search query parser
|
@@ -133,8 +132,8 @@ version, push git commits and tags, and push the `.gem` file to
|
|
133
132
|
|
134
133
|
## Contributing
|
135
134
|
|
136
|
-
Bug reports and pull requests are welcome on
|
137
|
-
[huyderman/querylicious](https://
|
135
|
+
Bug reports and pull requests are welcome on GitLab at
|
136
|
+
[huyderman/querylicious](https://gitlab.com/huyderman/querylicious). This
|
138
137
|
project is intended to be a safe, welcoming space for collaboration, and
|
139
138
|
contributors are expected to adhere to the
|
140
139
|
[code of conduct][code-of-conduct].
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/querylicious.gemspec
CHANGED
@@ -10,8 +10,13 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ['johannes@huyderman.com']
|
11
11
|
|
12
12
|
spec.summary = 'An opinionated search query parser'
|
13
|
-
spec.homepage = 'https://
|
13
|
+
spec.homepage = 'https://gitlab.com/huyderman/querylicious'
|
14
14
|
spec.license = 'MIT'
|
15
|
+
spec.metadata = {
|
16
|
+
'documentation_uri' => 'https://gitlab.com/huyderman/querylicious/blob/master/README.md',
|
17
|
+
'changelog_uri' => 'https://gitlab.com/huyderman/querylicious/blob/master/CHANGELOG.md',
|
18
|
+
'bug_tracker_uri' => 'https://gitlab.com/huyderman/querylicious/issues'
|
19
|
+
}
|
15
20
|
|
16
21
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
22
|
f.match(%r{^(test|spec|features)/})
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: querylicious
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jo-Herman Haugholt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-initializer
|
@@ -234,6 +234,7 @@ extensions: []
|
|
234
234
|
extra_rdoc_files: []
|
235
235
|
files:
|
236
236
|
- ".editorconfig"
|
237
|
+
- ".gitlab-ci.yml"
|
237
238
|
- ".mdlrc"
|
238
239
|
- ".reek"
|
239
240
|
- ".rspec"
|
@@ -256,10 +257,13 @@ files:
|
|
256
257
|
- lib/querylicious/transform.rb
|
257
258
|
- lib/querylicious/types.rb
|
258
259
|
- querylicious.gemspec
|
259
|
-
homepage: https://
|
260
|
+
homepage: https://gitlab.com/huyderman/querylicious
|
260
261
|
licenses:
|
261
262
|
- MIT
|
262
|
-
metadata:
|
263
|
+
metadata:
|
264
|
+
documentation_uri: https://gitlab.com/huyderman/querylicious/blob/master/README.md
|
265
|
+
changelog_uri: https://gitlab.com/huyderman/querylicious/blob/master/CHANGELOG.md
|
266
|
+
bug_tracker_uri: https://gitlab.com/huyderman/querylicious/issues
|
263
267
|
post_install_message:
|
264
268
|
rdoc_options: []
|
265
269
|
require_paths:
|
@@ -276,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
280
|
version: '0'
|
277
281
|
requirements: []
|
278
282
|
rubyforge_project:
|
279
|
-
rubygems_version: 2.7.
|
283
|
+
rubygems_version: 2.7.7
|
280
284
|
signing_key:
|
281
285
|
specification_version: 4
|
282
286
|
summary: An opinionated search query parser
|