shark-on-lambda 0.6.7 → 0.6.8

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: 44a4ee1f3d1628311fba41801df9dee659ebae05ad000992310f345248c26a16
4
- data.tar.gz: 5b807fc9fe412d64b23c2eee28dd8462f7375302f6a71b89c99e2b023ebbb90a
3
+ metadata.gz: 3160ca5ad6f560f9491766c14dfae252d96dccbd1e49a895d7d947570215fc20
4
+ data.tar.gz: 69fdecedecb24227c46f2a6ed9753f7303c28d9a79997b18790c8a5114bdca31
5
5
  SHA512:
6
- metadata.gz: 6e0d9987dce6c080ef81c9802df11c29c7e020a23a04e60c70b8c024add57ff8facead26ff82a8e6ead6b7029b3b491162aea23ac31d8ec1cbfbbbad45c186e6
7
- data.tar.gz: 2d95aee2c8d0a82a8c53adeea24a77756f1e63f731653265983b56956105b00f9096e480747778daed50dd7ef1066a276d702d7de0e9662842e9a3a609129592
6
+ metadata.gz: ef7dc3970a388734184a2300b8617ee3757cdc0416a7f3a1fc10b2c15e5e1124899511d734dc8bf199a5850064924327482f2d2049ce25ae50d4c6e78a916de8
7
+ data.tar.gz: e95fd45fc70630c20d5a68ebc2b9671dff6056b6fbd522e7cfcd28367ae9b5fc29770bdd6e1c35f049ce4b3571f7fc346c4901773a7e405dd0cb2e9c30488b0d
@@ -1,13 +1,39 @@
1
+ image: ruby:2.5
2
+
1
3
  rspec:
2
- image: ruby:2.5
3
4
  script:
4
5
  - gem install bundler
5
6
  - bundle install
6
7
  - bundle exec rake spec
7
8
 
8
9
  rubocop:
9
- image: ruby:2.5
10
10
  script:
11
11
  - gem install bundler
12
12
  - bundle install
13
13
  - bundle exec rubocop
14
+
15
+ package-to-github:
16
+ stage: deploy
17
+ script:
18
+ - mkdir ~/.gem
19
+ - 'echo ":github: Bearer $GH_PACKAGE_REGISTRY_KEY" > ~/.gem/credentials'
20
+ - chmod 0600 ~/.gem/credentials
21
+ - gem install bundler
22
+ - bundle install
23
+ - bundle exec rake build
24
+ - 'gem push --key github --host https://rubygems.pkg.github.com/Skudo pkg/`ls -1t pkg | head -1`'
25
+ only:
26
+ - tags
27
+
28
+ package-to-rubygems:
29
+ stage: deploy
30
+ script:
31
+ - mkdir ~/.gem
32
+ - 'echo ":rubygems_api_key: $RUBYGEMS_KEY" > ~/.gem/credentials'
33
+ - chmod 0600 ~/.gem/credentials
34
+ - gem install bundler
35
+ - bundle install
36
+ - bundle exec rake build
37
+ - 'gem push pkg/`ls -1t pkg | head -1`'
38
+ only:
39
+ - tags
@@ -1,5 +1,10 @@
1
1
  ## Changelog
2
2
 
3
+ #### 0.6.8
4
+
5
+ - [Fix] `Query` breaks when adding an item with a symbol as a key.
6
+ - Set up the GitLab build pipeline.
7
+
3
8
  #### 0.6.7
4
9
 
5
10
  - [Fix] Build 0.6.6 using the wrong branch.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shark-on-lambda (0.6.7)
4
+ shark-on-lambda (0.6.8)
5
5
  activesupport
6
6
  jsonapi-rb
7
7
  rack
@@ -33,7 +33,7 @@ module SharkOnLambda
33
33
  end
34
34
 
35
35
  def add(key, values)
36
- if key.end_with?('[]')
36
+ if key.to_s.end_with?('[]')
37
37
  actual_key = key[0..-3]
38
38
  add_list(actual_key, values)
39
39
  else
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SharkOnLambda
4
- VERSION = '0.6.7'
4
+ VERSION = '0.6.8'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shark-on-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.7
4
+ version: 0.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Huy Dinh
@@ -231,8 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
231
231
  - !ruby/object:Gem::Version
232
232
  version: '0'
233
233
  requirements: []
234
- rubyforge_project:
235
- rubygems_version: 2.7.6.2
234
+ rubygems_version: 3.0.3
236
235
  signing_key:
237
236
  specification_version: 4
238
237
  summary: Write beautiful Ruby applications for AWS Lambda