null_delivery 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: 34f1efcd934409da6f49e4e35fbe97f2d4990ac75ef92e879d0136e4a710a174
4
- data.tar.gz: 7e3bb96820e63f2299b62f671b4d279ae963be7e57ae6997813675370468ab76
3
+ metadata.gz: 37bea2b15faec65c3288e66cdd761b24b4faf52b1523e697b731fb0fb39360f7
4
+ data.tar.gz: 6a2b659a810f19e454e9f89555335f12ca417d32219239ddf80e535400b66f09
5
5
  SHA512:
6
- metadata.gz: 272990222bb99389ef24c00993d977c717616037b711e66bdb67dcd5616bebd9cee88845f0e097d8921ab70ec1e698bd367bff83152054383388dd742e59e223
7
- data.tar.gz: 86723cc012530e607fa7b3e637273925f1d99f3fd1878583f17b8fd2657273b2d359ec14cf19a1dab61dd9942cf8726504fe94ae0d46f9f8f1761e0456b227f6
6
+ metadata.gz: 84156b79d7d73098cb5cdf9a863a981e4f33c6172e70d9e808d749c90546ec9972ac9427154614d89ba9085fb11b1d5950eea22c62d8742058f8fa1d1c09ce7f
7
+ data.tar.gz: 0dc3be852e26df9e12f0f5cf74d9f6f0d15717df27cb7e4298abe9c1b6a4d67d373990e6360412ffff19cd15224713dd608171f53ef927fc137b450ed7727c89
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.2.2
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Benoit MARTIN-CHAVE
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
13
+ all 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
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -7,13 +7,9 @@ A Rails delivery method that does nothing.
7
7
  In you `Gemfile` :
8
8
 
9
9
  ```ruby
10
- gem "null_delivery"
11
- ```
12
-
13
- Or :
14
-
15
- ```
16
- gem install null_delivery
10
+ group :development do
11
+ gem "null_delivery"
12
+ end
17
13
  ```
18
14
 
19
15
  ## Configuration
@@ -1,3 +1,3 @@
1
1
  module NullDelivery
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -6,19 +6,20 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "null_delivery"
7
7
  spec.version = NullDelivery::VERSION
8
8
  spec.authors = ["Benoit MARTIN-CHAVE"]
9
- spec.email = ["benoit@martin-chave.ch"]
9
+ spec.email = ["benoit@martin-chave.com"]
10
10
 
11
11
  spec.summary = %(A Rails delivery method that does nothing.)
12
12
  spec.description = %(A Rails delivery method that does nothing.)
13
13
  spec.homepage = "https://github.com/BenoitMC/null_delivery"
14
+ spec.license = "MIT"
14
15
 
15
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
17
  spec.bindir = "exe"
17
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
19
  spec.require_paths = ["lib"]
19
20
 
20
- spec.add_development_dependency "bundler", "~> 1.11"
21
- spec.add_development_dependency "rake", "~> 10.0"
22
- spec.add_development_dependency "rspec", "~> 3.0"
21
+ spec.add_development_dependency "bundler"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
23
24
  spec.add_development_dependency "mail"
24
25
  end
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: null_delivery
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
  - Benoit MARTIN-CHAVE
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-25 00:00:00.000000000 Z
11
+ date: 2023-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.11'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.11'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '3.0'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '3.0'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: mail
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -68,14 +68,16 @@ dependencies:
68
68
  version: '0'
69
69
  description: A Rails delivery method that does nothing.
70
70
  email:
71
- - benoit@martin-chave.ch
71
+ - benoit@martin-chave.com
72
72
  executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
77
  - ".rspec"
78
+ - ".ruby-version"
78
79
  - Gemfile
80
+ - LICENSE.md
79
81
  - README.md
80
82
  - Rakefile
81
83
  - lib/null_delivery.rb
@@ -84,9 +86,10 @@ files:
84
86
  - lib/null_delivery/version.rb
85
87
  - null_delivery.gemspec
86
88
  homepage: https://github.com/BenoitMC/null_delivery
87
- licenses: []
89
+ licenses:
90
+ - MIT
88
91
  metadata: {}
89
- post_install_message:
92
+ post_install_message:
90
93
  rdoc_options: []
91
94
  require_paths:
92
95
  - lib
@@ -101,9 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
104
  - !ruby/object:Gem::Version
102
105
  version: '0'
103
106
  requirements: []
104
- rubyforge_project:
105
- rubygems_version: 2.7.6
106
- signing_key:
107
+ rubygems_version: 3.4.10
108
+ signing_key:
107
109
  specification_version: 4
108
110
  summary: A Rails delivery method that does nothing.
109
111
  test_files: []