bibliothecary 8.8.1 → 9.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc9dd3ee94e4de1a66c6dabac392832a1ba6805dbef22398665697a85bc8a420
4
- data.tar.gz: 800a427c7e9fbe6d12d116c1c0e57373136421dd99b6fc272218fad3c47db72d
3
+ metadata.gz: 5ee8f5b235766985dfe5ebab204d9102ab1ccaaa9d554bfe554717e5714a4d6a
4
+ data.tar.gz: 7c151adfd305c726b1fb071e057499b6db8e9ed23af5cae870faed1237ca3f12
5
5
  SHA512:
6
- metadata.gz: d8da425a16d0378c3a73658df752804af3f9c78d31eccb7a26e0abf0b469f0dfa9c8a1d17f907c77255015499e9f947b1b63823641762be161cb4248afb8a2b6
7
- data.tar.gz: 16d78e7dc17c53d79a6b634dde2ca7b73d8cccaa9db4435956ef752de6fa7c73a6d92a8486576beab838bc12a328016274ca850f2b54ed7e875110c1e38f0a74
6
+ metadata.gz: 23631d08bd943cf601e1304bcc4dfc02eb61dc23813919e5f3c3fc46c747ebb38d827f11ae559f80004c47751e74adc4aa98792d0176bec0ff3edff239018827
7
+ data.tar.gz: 3216f53aa721364f9f0209cb30a8b6a000e672a7ba874f4b5d2282a100611c5f1a26d9c921020fd3c4bf3e39ee0cb89ccbd63d91bfe462967ac85c28cd5b5e79
data/.circleci/config.yml CHANGED
@@ -1,37 +1,45 @@
1
1
  version: 2.1
2
2
  orbs:
3
- ruby: circleci/ruby@0.1.2
3
+ ruby: circleci/ruby@2.1.3
4
4
 
5
5
  executors:
6
6
  bibliothecary:
7
7
  docker:
8
- - image: cimg/ruby:2.7.1
8
+ - image: cimg/ruby:3.0.7
9
9
  working_directory: ~/bibliothecary
10
10
 
11
+
12
+ commands:
13
+ setup-ruby-env:
14
+ description: "Some requirements to ensure that the ruby orb install-deps works"
15
+ steps:
16
+ - run:
17
+ name: Prep ruby
18
+ command: |
19
+ touch /tmp/ruby-project-lockfile
20
+ bundle lock --add-platform x86_64-linux
21
+ - ruby/install-deps:
22
+ bundler-version: "2.3"
23
+
24
+
11
25
  jobs:
12
26
  test:
13
27
  executor: bibliothecary
14
28
  steps:
15
29
  - checkout
16
- - run:
17
- name: Which bundler?
18
- command: bundle -v
19
- - ruby/bundle-install
30
+ - setup-ruby-env
20
31
  - run:
21
32
  name: Run specs
22
33
  command: bundle exec rake spec
23
34
  - run:
24
35
  name: CodeClimate
25
- command: bundle exec codeclimate-test-reporter
36
+ command: bundle exec codeclimate-test-reporter
26
37
 
27
38
  lint:
28
39
  executor: bibliothecary
29
40
  steps:
30
41
  - checkout
31
- - run:
32
- name: Which bundler?
33
- command: bundle -v
34
- - ruby/bundle-install
42
+ - setup-ruby-env
35
43
  - run:
36
44
  name: Run specs
37
45
  command: bundle exec rake lint
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  AllCops:
4
4
  DisabledByDefault: true
5
- TargetRubyVersion: 2.7
5
+ TargetRubyVersion: 3.0
6
6
 
7
7
 
8
8
  Metrics/BlockLength:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.6
1
+ 3.0.7
data/README.md CHANGED
@@ -7,7 +7,7 @@ Dependency manifest parsing library for https://libraries.io
7
7
 
8
8
  ## Installation
9
9
 
10
- Requires Ruby 2.7 or above.
10
+ Requires Ruby 3.0 or above.
11
11
 
12
12
  Add this line to your application's Gemfile:
13
13
 
@@ -1,3 +1,3 @@
1
1
  module Bibliothecary
2
- VERSION = "8.8.1"
2
+ VERSION = "9.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bibliothecary
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.8.1
4
+ version: 9.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-29 00:00:00.000000000 Z
11
+ date: 2024-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tomlrb
@@ -248,7 +248,7 @@ dependencies:
248
248
  - - ">="
249
249
  - !ruby/object:Gem::Version
250
250
  version: '0'
251
- description:
251
+ description:
252
252
  email:
253
253
  - andrewnez@gmail.com
254
254
  executables:
@@ -326,7 +326,7 @@ homepage: https://github.com/librariesio/bibliothecary
326
326
  licenses:
327
327
  - AGPL-3.0
328
328
  metadata: {}
329
- post_install_message:
329
+ post_install_message:
330
330
  rdoc_options: []
331
331
  require_paths:
332
332
  - lib
@@ -341,8 +341,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
341
  - !ruby/object:Gem::Version
342
342
  version: '0'
343
343
  requirements: []
344
- rubygems_version: 3.3.22
345
- signing_key:
344
+ rubygems_version: 3.2.33
345
+ signing_key:
346
346
  specification_version: 4
347
347
  summary: Find and parse manifests
348
348
  test_files: []