mutt-ldap-query 1.0.0 → 1.0.1

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: b59bd7f51bea020074fa0d7693174b2d4f40ad3cbcd2e4d38e7eaabf4bae2a7a
4
- data.tar.gz: b16680985301d9ae24a43a8c3541a6c8d46d56240e766a7c9182426a51be5957
3
+ metadata.gz: f3d7f58ce3fb135ba8317a96e017cfb752e9b571c04fba939d9bbc818238c8a5
4
+ data.tar.gz: 5b38a898f80ac9709636f8a46f49251ada41dc6f180d90a64888f1ee55123fb4
5
5
  SHA512:
6
- metadata.gz: 3e7ccf3ea2dc1199e1b9bb985dca01b9f38136ace9e7c1836daefcd153d97b6aa671083b9c820d0e5a73638a34fda5b1914460621584b3e417387bd292dd6741
7
- data.tar.gz: b98918945d8003810e0a22f8f80ddb9d4ac7946505946da8d1751f528445cd6bf1375a1a2fb8062dcff736a76e651a6574c996ec2559a561a2919c38aa8dfc4e
6
+ metadata.gz: e8d0590f3e311cdad4e69f2c69234fa3c24f28423b6955ca71a775b1da40348f00756b5af5e89c67d64162aff6583b5d99a317342a40e037bf10abee8667356b
7
+ data.tar.gz: 2e8754df042ae315ecfab93fdde2e816999617f659ebe23d8c7ae8a6a089ff9a3c7a0e4ea9afdf0a407e5b503e8072fe476a58c85490b6377ed575815d630fa3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
- ## [Unreleased]
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2
5
 
3
- ## [0.1.0] - 2021-07-27
6
+ ## [1.0.1](https://github.com/smortex/mutt-ldap-query/tree/1.0.1) (2022-02-23)
4
7
 
5
- - Initial release
8
+ [Full Changelog](https://github.com/smortex/mutt-ldap-query/compare/v1.0.0...1.0.1)
9
+
10
+ **Fixed bugs:**
11
+
12
+ - Fix method name in wrapper [\#1](https://github.com/smortex/mutt-ldap-query/pull/1) ([smortex](https://github.com/smortex))
13
+
14
+
15
+
16
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Rakefile CHANGED
@@ -9,4 +9,19 @@ require 'rubocop/rake_task'
9
9
 
10
10
  RuboCop::RakeTask.new
11
11
 
12
+ require 'github_changelog_generator/task'
13
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
14
+ config.future_release = Mutt::Ldap::Query::VERSION
15
+ config.header = <<~HEADER.chomp
16
+ # Changelog
17
+ All notable changes to this project will be documented in this file.
18
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
19
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
20
+ HEADER
21
+ config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog ignore]
22
+ config.user = 'smortex'
23
+ config.project = 'mutt-ldap-query'
24
+ config.since_tag = 'v1.0.0'
25
+ end
26
+
12
27
  task default: %i[spec rubocop]
data/exe/mutt-ldap-query CHANGED
@@ -26,7 +26,7 @@ worker.gen_config if options[:gen_config]
26
26
  worker.edit_config if options[:edit_config]
27
27
  exit 0 if options[:gen_config] || options[:edit_config]
28
28
 
29
- unless worker.has_config?
29
+ unless worker.configured?
30
30
  warn "#{worker.config_path} does not exist. Try `#{$PROGRAM_NAME} --gen-config`."
31
31
  exit 1
32
32
  end
@@ -3,7 +3,7 @@
3
3
  module Mutt
4
4
  module Ldap
5
5
  module Query
6
- VERSION = '1.0.0'
6
+ VERSION = '1.0.1'
7
7
  end
8
8
  end
9
9
  end
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.metadata['homepage_uri'] = spec.homepage
19
19
  spec.metadata['source_code_uri'] = 'https://github.com/smortex/mutt-ldap-query'
20
20
  spec.metadata['changelog_uri'] = 'https://github.com/smortex/mutt-ldap-query/blob/master/CHANGELOG.md'
21
+ spec.metadata['rubygems_mfa_required'] = 'true'
21
22
 
22
23
  # Specify which files should be added to the gem when it is released.
23
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -30,4 +31,5 @@ Gem::Specification.new do |spec|
30
31
 
31
32
  spec.add_dependency 'net-ldap', '~> 0.17'
32
33
  spec.add_dependency 'xdg', '>= 4.0'
34
+ spec.add_development_dependency 'github_changelog_generator'
33
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutt-ldap-query
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-19 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-ldap
@@ -38,7 +38,21 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '4.0'
41
- description:
41
+ - !ruby/object:Gem::Dependency
42
+ name: github_changelog_generator
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
42
56
  email:
43
57
  - romain@blogreen.org
44
58
  executables:
@@ -71,7 +85,8 @@ metadata:
71
85
  homepage_uri: https://github.com/smortex/mutt-ldap-query
72
86
  source_code_uri: https://github.com/smortex/mutt-ldap-query
73
87
  changelog_uri: https://github.com/smortex/mutt-ldap-query/blob/master/CHANGELOG.md
74
- post_install_message:
88
+ rubygems_mfa_required: 'true'
89
+ post_install_message:
75
90
  rdoc_options: []
76
91
  require_paths:
77
92
  - lib
@@ -86,8 +101,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
101
  - !ruby/object:Gem::Version
87
102
  version: '0'
88
103
  requirements: []
89
- rubygems_version: 3.0.8
90
- signing_key:
104
+ rubygems_version: 3.2.5
105
+ signing_key:
91
106
  specification_version: 4
92
107
  summary: Search LDAP directory from mutt
93
108
  test_files: []