defmastership-core 1.0.0 → 1.1.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: a2409414409c0de765bc37b9b666c32e31ec11fc6c5b5a03c44bc88c1d575d31
4
- data.tar.gz: e2db2622f4b8eece83f5b1c80f918890619dc0d7a88c4b32cd35b90a6560afa3
3
+ metadata.gz: e02b53e306be26b56798011f57225ffce2c03d247faab3846375b2279e87c2fa
4
+ data.tar.gz: 5c236cdea358de4137c53667dd9a4c42ae3fcdffde9298977a5b56f14dd36b07
5
5
  SHA512:
6
- metadata.gz: 75804159eff5802621ef51db560c7fac277b025d2eeb28462af0915c467aa2b927eb745c9aa20029056974e1d4c8bc7cb61deffe53c064b6f3da32e26128b769
7
- data.tar.gz: f79713179f65c5c7e57eac2cbcf623b0a151a91a58de39d6953ef1803369c081429039c1eb200a52f312265fffc03a5999ed3de4b227f4797c84a73005367138
6
+ metadata.gz: 479cfc833f1a4e2364e5f620cfee9b66dc5847636182aefcdc779a4c8a465a9eb0335e740fe3eff5d148fb96b8b38401d80617b02462cd4bd882387645f8a3a6
7
+ data.tar.gz: 5e498d2697e36fc40ee377308611c44b4323230082d0e071f05d604b398042cbd5eb0e87d1663a619441e2077d851fdcbf3a120b1648eab2e0cc00b63e196c63
data/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
3
  Copyright (c) 2020 Jérôme Arbez-Gindre, and the individual contributors
4
- to DefMastership.
4
+ to Defmastership.
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
data/config/mutant.yml CHANGED
@@ -11,20 +11,5 @@ requires:
11
11
  - defmastership
12
12
  matcher:
13
13
  subjects:
14
- - 'DefMastership*'
15
- # ignore:
16
- # - 'DefMastership::BatchModifier*'
17
- # - 'DefMastership::Export::CSV::Formatter*'
18
- # - 'DefMastership::Export::CSV::BodyFormatter*'
19
- # - 'DefMastership::Export::CSV::HeaderFormatter*'
20
- # - 'DefMastership::Modifier::ChangeRef*'
21
- # - 'DefMastership::Definition*'
22
- # - 'DefMastership::Document*'
23
- # - 'DefMastership::Modifier::ModifierCommon*'
24
- # - 'DefMastership::Modifier::Factory*'
25
- # - 'DefMastership::ParsingState*'
26
- # - 'DefMastership::Modifier::RenameIncludedFiles*'
27
- # - 'DefMastership::Modifier::UpdateDefChecksum*'
28
- # - 'DefMastership::Modifier::UpdateDef*'
29
- # - 'DefMastership::Modifier::UpdateDefVersion*'
14
+ - 'Defmastership::Core*'
30
15
  # fail_fast: true
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  }
22
22
  spec.required_ruby_version = '>= 2.7'
23
23
  spec.name = 'defmastership-core'
24
- spec.version = DefMastership::Core::VERSION
24
+ spec.version = Defmastership::Core::VERSION
25
25
  spec.author = 'Jérôme Arbez-Gindre'
26
26
  spec.email = 'jeromearbezgindre@gmail.com'
27
27
  spec.licenses = ['MIT']
@@ -1,8 +1,8 @@
1
1
  # Copyright (c) 2020 Jerome Arbez-Gindre
2
2
  # frozen_string_literal: true
3
3
 
4
- module DefMastership
5
- # Common code for DefMastership and Asciidoctor::DefMastership
4
+ module Defmastership
5
+ # Common code for Defmastership and Asciidoctor::Defmastership
6
6
  module Core
7
7
  # set of regexp of added asciidoctor constructions
8
8
  # This module smells of :reek:TooManyConstants
@@ -1,7 +1,7 @@
1
1
  # Copyright (c) 2020 Jerome Arbez-Gindre
2
2
  # frozen_string_literal: true
3
3
 
4
- module DefMastership
4
+ module Defmastership
5
5
  module Core
6
6
  # Allow to know if we need to parse the line or simply ignore it
7
7
  class ParsingState
@@ -1,11 +1,11 @@
1
1
  # Copyright (c) 2020 Jerome Arbez-Gindre
2
2
  # frozen_string_literal: true
3
3
 
4
- module DefMastership
4
+ module Defmastership
5
5
  # Common to defmastership and asciidoctor-defmastership
6
6
  module Core
7
7
  # [String] Gem version
8
- VERSION = '1.0.0'
8
+ VERSION = '1.1.0'
9
9
  public_constant :VERSION
10
10
  end
11
11
  end
@@ -3,7 +3,7 @@
3
3
 
4
4
  require('defmastership/core/parsing_state')
5
5
 
6
- RSpec.describe(DefMastership::Core::ParsingState) do
6
+ RSpec.describe(Defmastership::Core::ParsingState) do
7
7
  subject(:parsing_state) do
8
8
  described_class.new
9
9
  end
@@ -1,8 +1,8 @@
1
1
  # Copyright (c) 2020 Jerome Arbez-Gindre
2
2
  # frozen_string_literal: true
3
3
 
4
- RSpec.describe(DefMastership::Core) do
4
+ RSpec.describe(Defmastership::Core) do
5
5
  it 'has a version number' do
6
- expect(DefMastership::Core::VERSION).not_to(be_nil)
6
+ expect(Defmastership::Core::VERSION).not_to(be_nil)
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: defmastership-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jérôme Arbez-Gindre
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-14 00:00:00.000000000 Z
11
+ date: 2024-11-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: jeromearbezgindre@gmail.com
@@ -33,8 +33,8 @@ files:
33
33
  - lib/defmastership/core/parsing_state.rb
34
34
  - lib/defmastership/core/version.rb
35
35
  - spec/spec_helper.rb
36
- - spec/unit/def_mastership/core/parsing_state_spec.rb
37
- - spec/unit/def_mastership/core_spec.rb
36
+ - spec/unit/defmastership/core/parsing_state_spec.rb
37
+ - spec/unit/defmastership/core_spec.rb
38
38
  - tasks/code_quality.rake
39
39
  - tasks/console.rake
40
40
  - tasks/documentation.rake
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
- rubygems_version: 3.5.23
64
+ rubygems_version: 3.5.22
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: Handling of references and definitions with asciidoctor - common code