ncore 3.11.0 → 3.13.0

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: 7fcefc4340fdc30c50a41ace657b6217e619223128d05f17bad093f01dbbbc1d
4
- data.tar.gz: 5503c9ffea00f5dc0315ffc4777d6eb728fd0bb9b8fbf84fde0452b08e7d74b9
3
+ metadata.gz: 8aba80866ada6ab3559ac17745053509914427046e772ad5711837bfc0bbf97f
4
+ data.tar.gz: 83ca4ae22a89e99327f96c504c9986c97e7af617ab7db2a2a986b48441e4c5d9
5
5
  SHA512:
6
- metadata.gz: b891c660b6fbf9f3a861d0c471e1e95f8555f0bd96237bcbcc81b329eb74eab8021d426692dcab8574c05e994151497efa6d85116c77dc47f638350db5b950d4
7
- data.tar.gz: 29839224b4c0e03a32d87757d83e9e687f48070def0618217da1f60b99ed01cecd8b6c25e88ae7beb38600632235594f3b93ed2ca61897e006c18449fbf51d87
6
+ metadata.gz: 409c2343a7907cb16e49ea35be337230c751ce4c03922e829b88d4b4f4f3789048dcddf58c6f6887dc787b79f7698a7a0047dddbbc6de181080757ed263626be
7
+ data.tar.gz: 16d444a83e44688b61da399ad740a340728a946b4c637c9f36b4b01c9330d494e9c379224d8461e5f2c23ec2a40b8ebdca8fd34e723bae01cee6b623e600a7e1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ #### 3.13.0
2
+
3
+ - Allow ActiveModel 8.1
4
+
5
+ #### 3.12.0
6
+
7
+ - Allow ActiveModel 8.0
8
+
1
9
  #### 3.11.0
2
10
 
3
11
  - Allow ActiveModel 7.2, Excon 1.x
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2024 Notioneer, Inc.
1
+ Copyright 2014-2025 Notioneer, Inc.
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -33,3 +33,8 @@ Or install it yourself as:
33
33
  3. Commit your changes (`git commit -am 'Add some feature'`)
34
34
  4. Push to the branch (`git push origin my-new-feature`)
35
35
  5. Create new Pull Request
36
+
37
+
38
+ ## License
39
+
40
+ MIT
data/lib/ncore/builder.rb CHANGED
@@ -31,4 +31,4 @@ module NCore
31
31
  end
32
32
 
33
33
  end
34
- end
34
+ end
data/lib/ncore/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module NCore
2
- VERSION = '3.11.0'
2
+ VERSION = '3.13.0'
3
3
  end
data/ncore.gemspec CHANGED
@@ -13,6 +13,11 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = 'https://notioneer.com/'
14
14
  spec.license = "MIT"
15
15
 
16
+ spec.metadata = {
17
+ 'source_code_uri' => 'https://github.com/notioneer/ncore-ruby',
18
+ 'changelog_uri' => 'https://github.com/notioneer/ncore-ruby/blob/master/CHANGELOG.md'
19
+ }
20
+
16
21
  spec.files = `git ls-files`.split($/)
17
22
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
23
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
@@ -20,7 +25,7 @@ Gem::Specification.new do |spec|
20
25
 
21
26
  spec.required_ruby_version = '>= 2.7'
22
27
 
23
- spec.add_dependency 'activemodel', '>= 5.2', '< 7.3'
28
+ spec.add_dependency 'activemodel', '>= 5.2', '< 8.2'
24
29
  spec.add_dependency 'excon', '< 2'
25
30
 
26
31
  spec.add_development_dependency "bundler"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ncore
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.0
4
+ version: 3.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Notioneer Team
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-01 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activemodel
@@ -19,7 +18,7 @@ dependencies:
19
18
  version: '5.2'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '7.3'
21
+ version: '8.2'
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +28,7 @@ dependencies:
29
28
  version: '5.2'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '7.3'
31
+ version: '8.2'
33
32
  - !ruby/object:Gem::Dependency
34
33
  name: excon
35
34
  requirement: !ruby/object:Gem::Requirement
@@ -127,8 +126,9 @@ files:
127
126
  homepage: https://notioneer.com/
128
127
  licenses:
129
128
  - MIT
130
- metadata: {}
131
- post_install_message:
129
+ metadata:
130
+ source_code_uri: https://github.com/notioneer/ncore-ruby
131
+ changelog_uri: https://github.com/notioneer/ncore-ruby/blob/master/CHANGELOG.md
132
132
  rdoc_options: []
133
133
  require_paths:
134
134
  - lib
@@ -143,8 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  - !ruby/object:Gem::Version
144
144
  version: '0'
145
145
  requirements: []
146
- rubygems_version: 3.5.11
147
- signing_key:
146
+ rubygems_version: 3.6.9
148
147
  specification_version: 4
149
148
  summary: NCore - Gem for building REST API clients
150
149
  test_files: []