remont 0.1.1 → 0.1.2

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: cc06eb6d1dddd55ec43542c7ce574c3e4b2f775230d4005aa4e72a2352ce24df
4
- data.tar.gz: 403813fb176d0c028075298808a897f149de6116bacb89e7bf92dce5633d743f
3
+ metadata.gz: fef6ca4c4fb15d4b408b15362f695d57f35c251bd1a39e9acffe3781e1ba0dfe
4
+ data.tar.gz: 9232bafef16dd069c9e3beab41225ffc01e2a5efc828ef3127044f1d8dea7039
5
5
  SHA512:
6
- metadata.gz: 71af67ff58ba821f6c12ca67ceb038024c88536afbeb1173c7cce0b34cca9fca63da47e9543932a2f744f508fb8c1aca7c4656ef9706c188956f658689ed1244
7
- data.tar.gz: bf33a5f1ccbf9b88c0ce06852ec12fda9898c0186dfe1f5cb5a09408f680cb4e04eade3519791f1ac6dae5fd850105fb92ba645ec9b18bca2a4838126d5c7cdb
6
+ metadata.gz: 6fda028ec5e55bdb4fef7b1cb60e955444bae187f611ebf7fe0b8e7ff2d9d8e365f58903b653cc16e15039c6d15202e7cf133250fc43e3027a16e7b499171f03
7
+ data.tar.gz: 41c1b71c8b424a99dbf022dd51ca11b13df6a982163ef3f8ad9988090808bd1f115dee0779ace5d1e99084566079b0b6037573a283d03400920907da5e967c8f
data/.rubocop.yml CHANGED
@@ -11,3 +11,6 @@ RSpec/MultipleExpectations:
11
11
 
12
12
  Style/FrozenStringLiteralComment:
13
13
  Enabled: false
14
+
15
+ Gemspec/DevelopmentDependencies:
16
+ EnforcedStyle: gemspec
data/CHANGELOG.md CHANGED
@@ -4,3 +4,6 @@
4
4
 
5
5
  - Add support for adding script path argument to the rake task (@cukoreva)
6
6
  - Add support for configuring processing status attribute per schema (@vr4b4c)
7
+
8
+ ## 0.1.2 (Sep 26th, 2023)
9
+ - Add MIT license.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Infinum
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  module Remont
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
data/remont.gemspec CHANGED
@@ -8,6 +8,7 @@ Gem::Specification.new do |spec|
8
8
 
9
9
  spec.summary = 'DSL for row level data processing.'
10
10
  spec.homepage = 'https://github.com/infinum/remont'
11
+ spec.license = 'MIT'
11
12
  spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
12
13
 
13
14
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remont
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rails Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-23 00:00:00.000000000 Z
11
+ date: 2023-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -108,7 +108,7 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- description:
111
+ description:
112
112
  email:
113
113
  - team.rails@infinum.com
114
114
  executables: []
@@ -125,6 +125,7 @@ files:
125
125
  - CHANGELOG.md
126
126
  - CODE_OF_CONDUCT.md
127
127
  - Gemfile
128
+ - LICENSE
128
129
  - README.md
129
130
  - Rakefile
130
131
  - bin/console
@@ -140,14 +141,15 @@ files:
140
141
  - lib/remont/version.rb
141
142
  - remont.gemspec
142
143
  homepage: https://github.com/infinum/remont
143
- licenses: []
144
+ licenses:
145
+ - MIT
144
146
  metadata:
145
147
  allowed_push_host: https://rubygems.org
146
148
  homepage_uri: https://github.com/infinum/remont
147
149
  source_code_uri: https://github.com/infinum/remont
148
150
  changelog_uri: https://github.com/infinum/remont/blob/master/CHANGELOG.md
149
151
  rubygems_mfa_required: 'true'
150
- post_install_message:
152
+ post_install_message:
151
153
  rdoc_options: []
152
154
  require_paths:
153
155
  - lib
@@ -163,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
165
  version: '0'
164
166
  requirements: []
165
167
  rubygems_version: 3.1.4
166
- signing_key:
168
+ signing_key:
167
169
  specification_version: 4
168
170
  summary: DSL for row level data processing.
169
171
  test_files: []