rumble 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codecov.yml +20 -0
- data/.github/workflows/rake.yml +24 -0
- data/.rubocop.yml +4 -2
- data/.rultor.yml +4 -1
- data/.simplecov +8 -6
- data/Gemfile +1 -2
- data/LICENSE.txt +1 -1
- data/README.md +2 -3
- data/Rakefile +1 -1
- data/bin/rumble +1 -1
- data/features/step_definitions/steps.rb +5 -9
- data/features/support/env.rb +1 -1
- data/lib/rumble/cli.rb +3 -3
- data/lib/rumble/version.rb +3 -3
- data/lib/rumble.rb +2 -2
- data/rumble.gemspec +16 -20
- data/test/test__helper.rb +2 -2
- data/test/test_rumble.rb +2 -2
- metadata +35 -40
- data/.travis.yml +0 -13
- data/appveyor.yml +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3534115896cb0b4f9bfbee263408e6f2c201ac7e3a2f24213df12c1001964ac
|
4
|
+
data.tar.gz: a36b70edc313b5952089b4c17a8a58f9b6a009aef1ba6e0617711e5acb0330fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b4db301c16737fbd3ab2d62f943862cde676d337d3e851dbe0ce376ce6c6e868a232f5799bb5cfd75ab8ae425818607e06f17c0449761274d0cf6073959d1e2
|
7
|
+
data.tar.gz: 8f086c644ebed178abfd59a09784844b3f1921b09162ba0513bffba35d60bd3eed7bf20b2c9d31d527222607740f5edab85bbd1683523815b50d69fe5723e0c6
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: codecov
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
jobs:
|
8
|
+
codecov:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
steps:
|
11
|
+
- uses: actions/checkout@v2
|
12
|
+
- uses: actions/setup-ruby@v1
|
13
|
+
with:
|
14
|
+
ruby-version: 2.7
|
15
|
+
- run: bundle update
|
16
|
+
- run: bundle exec rake
|
17
|
+
- uses: codecov/codecov-action@v1
|
18
|
+
with:
|
19
|
+
file: coverage/.resultset.json
|
20
|
+
fail_ci_if_error: true
|
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
name: rake
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
jobs:
|
11
|
+
test:
|
12
|
+
name: test
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
os: [ubuntu-latest, macos-latest]
|
16
|
+
ruby: [2.7]
|
17
|
+
runs-on: ${{ matrix.os }}
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- uses: actions/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
ruby-version: ${{ matrix.ruby }}
|
23
|
+
- run: bundle update
|
24
|
+
- run: bundle exec rake
|
data/.rubocop.yml
CHANGED
@@ -4,11 +4,13 @@ AllCops:
|
|
4
4
|
- 'assets/**/*'
|
5
5
|
DisplayCopNames: true
|
6
6
|
TargetRubyVersion: 2.3
|
7
|
+
NewCops: enable
|
8
|
+
SuggestExtensions: false
|
7
9
|
|
8
10
|
Layout/EndOfLine:
|
9
11
|
EnforcedStyle: lf
|
10
12
|
Metrics/CyclomaticComplexity:
|
11
|
-
Max:
|
13
|
+
Max: 22
|
12
14
|
Metrics/MethodLength:
|
13
15
|
Enabled: false
|
14
16
|
Layout/MultilineMethodCallIndentation:
|
@@ -18,7 +20,7 @@ Metrics/AbcSize:
|
|
18
20
|
Metrics/BlockLength:
|
19
21
|
Max: 100
|
20
22
|
Metrics/PerceivedComplexity:
|
21
|
-
Max:
|
23
|
+
Max: 22
|
22
24
|
Style/MultilineTernaryOperator:
|
23
25
|
Enabled: false
|
24
26
|
Layout/EmptyLineAfterGuardClause:
|
data/.rultor.yml
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
docker:
|
2
|
+
image: yegor256/rultor-image:1.9.0
|
1
3
|
assets:
|
2
4
|
rubygems.yml: yegor256/home#assets/rubygems.yml
|
3
5
|
install: |
|
@@ -5,9 +7,10 @@ install: |
|
|
5
7
|
sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
|
6
8
|
release:
|
7
9
|
script: |-
|
10
|
+
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
|
8
11
|
bundle exec rake
|
9
12
|
rm -rf *.gem
|
10
|
-
sed -i "s/
|
13
|
+
sed -i "s/0\.0\.0/${tag}/g" lib/rumble/version.rb
|
11
14
|
git add lib/rumble/version.rb
|
12
15
|
git commit -m "version set to ${tag}"
|
13
16
|
gem build rumble.gemspec
|
data/.simplecov
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
2
4
|
#
|
3
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -18,21 +20,21 @@
|
|
18
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
21
|
# SOFTWARE.
|
20
22
|
|
21
|
-
if Gem.win_platform?
|
23
|
+
if Gem.win_platform?
|
22
24
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
23
25
|
SimpleCov::Formatter::HTMLFormatter
|
24
26
|
]
|
25
27
|
SimpleCov.start do
|
26
|
-
add_filter
|
27
|
-
add_filter
|
28
|
+
add_filter '/test/'
|
29
|
+
add_filter '/features/'
|
28
30
|
end
|
29
31
|
else
|
30
32
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
|
31
33
|
[SimpleCov::Formatter::HTMLFormatter]
|
32
34
|
)
|
33
35
|
SimpleCov.start do
|
34
|
-
add_filter
|
35
|
-
add_filter
|
36
|
+
add_filter '/test/'
|
37
|
+
add_filter '/features/'
|
36
38
|
minimum_coverage 60
|
37
39
|
end
|
38
40
|
end
|
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -21,5 +21,4 @@
|
|
21
21
|
# SOFTWARE.
|
22
22
|
|
23
23
|
source 'https://rubygems.org'
|
24
|
-
ruby '~>2.3'
|
25
24
|
gemspec
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
<img src="/logo.svg" width="64px" height="64px"/>
|
2
2
|
|
3
3
|
[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)
|
4
|
-
[![Managed by Zerocracy](https://www.0crat.com/badge/C3RFVLU72.svg)](https://www.0crat.com/p/C3RFVLU72)
|
5
4
|
[![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/rumble)](http://www.rultor.com/p/yegor256/rumble)
|
6
5
|
[![We recommend RubyMine](https://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
|
7
6
|
|
8
|
-
[![
|
9
|
-
[![Build status](https://ci.appveyor.com/api/projects/status/orvfo2qgmd1d7a2i?svg=true)](https://ci.appveyor.com/project/yegor256/rumble)
|
7
|
+
[![rake](https://github.com/yegor256/rumble/actions/workflows/rake.yml/badge.svg)](https://github.com/yegor256/rumble/actions/workflows/rake.yml)
|
10
8
|
[![PDD status](http://www.0pdd.com/svg?name=yegor256/rumble)](http://www.0pdd.com/p?name=yegor256/rumble)
|
11
9
|
[![Gem Version](https://badge.fury.io/rb/rumble.svg)](http://badge.fury.io/rb/rumble)
|
12
10
|
[![Maintainability](https://api.codeclimate.com/v1/badges/a3fee65d42a9cf6397ea/maintainability)](https://codeclimate.com/github/yegor256/rumble/maintainability)
|
13
11
|
[![Test Coverage](https://img.shields.io/codecov/c/github/yegor256/rumble.svg)](https://codecov.io/github/yegor256/rumble?branch=master)
|
14
12
|
|
13
|
+
![Lines of code](https://img.shields.io/tokei/lines/github/yegor256/rumble)
|
15
14
|
[![Hits-of-Code](https://hitsofcode.com/github/yegor256/0rsk)](https://hitsofcode.com/view/github/yegor256/0rsk)
|
16
15
|
|
17
16
|
This command line tool helps you send newsletters.
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/bin/rumble
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
# Copyright (c) 2018-
|
2
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
3
3
|
#
|
4
4
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
5
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -29,7 +29,7 @@ require_relative '../../lib/rumble'
|
|
29
29
|
Before do
|
30
30
|
@cwd = Dir.pwd
|
31
31
|
@dir = Dir.mktmpdir('test')
|
32
|
-
FileUtils.mkdir_p(@dir)
|
32
|
+
FileUtils.mkdir_p(@dir)
|
33
33
|
Dir.chdir(@dir)
|
34
34
|
@opts = Slop.parse ['-v', '-s', @dir] do |o|
|
35
35
|
o.bool '-v', '--verbose'
|
@@ -39,14 +39,12 @@ end
|
|
39
39
|
|
40
40
|
After do
|
41
41
|
Dir.chdir(@cwd)
|
42
|
-
FileUtils.rm_rf(@dir)
|
42
|
+
FileUtils.rm_rf(@dir)
|
43
43
|
end
|
44
44
|
|
45
45
|
Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
|
46
46
|
FileUtils.mkdir_p(File.dirname(file)) unless File.exist?(file)
|
47
|
-
File.
|
48
|
-
f.write(text.gsub(/\\xFF/, 0xFF.chr))
|
49
|
-
end
|
47
|
+
File.write(file, text.gsub(/\\xFF/, 0xFF.chr))
|
50
48
|
end
|
51
49
|
|
52
50
|
When(%r{^I run bin/rumble with "([^"]*)"$}) do |arg|
|
@@ -56,9 +54,7 @@ When(%r{^I run bin/rumble with "([^"]*)"$}) do |arg|
|
|
56
54
|
end
|
57
55
|
|
58
56
|
Then(/^Stdout contains "([^"]*)"$/) do |txt|
|
59
|
-
unless @stdout.include?(txt)
|
60
|
-
raise "STDOUT doesn't contain '#{txt}':\n#{@stdout}"
|
61
|
-
end
|
57
|
+
raise "STDOUT doesn't contain '#{txt}':\n#{@stdout}" unless @stdout.include?(txt)
|
62
58
|
end
|
63
59
|
|
64
60
|
Then(/^Stdout is empty$/) do
|
data/features/support/env.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
data/lib/rumble/cli.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -33,7 +33,7 @@ require_relative 'version'
|
|
33
33
|
|
34
34
|
# Rumble main script.
|
35
35
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
36
|
-
# Copyright:: Copyright (c) 2018-
|
36
|
+
# Copyright:: Copyright (c) 2018-2022 Yegor Bugayenko
|
37
37
|
# License:: MIT
|
38
38
|
class Rumble::CLI
|
39
39
|
# Make an instance.
|
@@ -121,7 +121,7 @@ at the column ##{@opts['col-email'].to_i}: #{array}"
|
|
121
121
|
`#{@opts[:attach]} "#{email}" "#{name}" "#{dir}"`
|
122
122
|
raise 'Failed to exec' unless $CHILD_STATUS.success?
|
123
123
|
Dir[File.join(dir, '*')].each do |f|
|
124
|
-
mail.add_file(filename: File.basename(f), content:
|
124
|
+
mail.add_file(filename: File.basename(f), content: File.read(f))
|
125
125
|
end
|
126
126
|
end
|
127
127
|
end
|
data/lib/rumble/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -22,8 +22,8 @@
|
|
22
22
|
|
23
23
|
# Rumble main module.
|
24
24
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
25
|
-
# Copyright:: Copyright (c) 2018-
|
25
|
+
# Copyright:: Copyright (c) 2018-2022 Yegor Bugayenko
|
26
26
|
# License:: MIT
|
27
27
|
module Rumble
|
28
|
-
VERSION = '0.
|
28
|
+
VERSION = '0.7.0'
|
29
29
|
end
|
data/lib/rumble.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# Rumble module.
|
24
24
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
25
|
-
# Copyright:: Copyright (c) 2018-
|
25
|
+
# Copyright:: Copyright (c) 2018-2022 Yegor Bugayenko
|
26
26
|
# License:: MIT
|
27
27
|
module Rumble
|
28
28
|
# Nothing
|
data/rumble.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -26,11 +26,7 @@ lib = File.expand_path('lib', __dir__)
|
|
26
26
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
27
27
|
require_relative 'lib/rumble/version'
|
28
28
|
Gem::Specification.new do |s|
|
29
|
-
s.
|
30
|
-
if s.respond_to? :required_rubygems_version=
|
31
|
-
s.required_rubygems_version = Gem::Requirement.new('>= 0')
|
32
|
-
end
|
33
|
-
s.rubygems_version = '2.2'
|
29
|
+
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
34
30
|
s.required_ruby_version = '>= 2.3'
|
35
31
|
s.name = 'rumble'
|
36
32
|
s.version = Rumble::VERSION
|
@@ -42,22 +38,22 @@ Gem::Specification.new do |s|
|
|
42
38
|
s.homepage = 'http://github.com/yegor256/rumble'
|
43
39
|
s.files = `git ls-files`.split($RS)
|
44
40
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
45
|
-
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
46
41
|
s.rdoc_options = ['--charset=UTF-8']
|
47
42
|
s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
|
48
|
-
s.add_runtime_dependency 'liquid', '
|
43
|
+
s.add_runtime_dependency 'liquid', '5.3.0'
|
49
44
|
s.add_runtime_dependency 'mail', '2.7.1'
|
50
45
|
s.add_runtime_dependency 'net-smtp-proxy', '2.0.0'
|
51
|
-
s.add_runtime_dependency 'rainbow', '3.
|
52
|
-
s.add_runtime_dependency 'redcarpet', '3.
|
53
|
-
s.add_runtime_dependency 'slop', '4.
|
54
|
-
s.add_runtime_dependency 'uuidtools', '2.
|
55
|
-
s.add_development_dependency 'codecov', '0.
|
56
|
-
s.add_development_dependency 'cucumber', '
|
57
|
-
s.add_development_dependency 'minitest', '5.
|
58
|
-
s.add_development_dependency 'rake', '
|
59
|
-
s.add_development_dependency 'rdoc', '4.
|
60
|
-
s.add_development_dependency 'rspec-rails', '
|
61
|
-
s.add_development_dependency 'rubocop', '
|
62
|
-
s.add_development_dependency 'rubocop-rspec', '
|
46
|
+
s.add_runtime_dependency 'rainbow', '3.1.1'
|
47
|
+
s.add_runtime_dependency 'redcarpet', '3.5.1'
|
48
|
+
s.add_runtime_dependency 'slop', '4.9.2'
|
49
|
+
s.add_runtime_dependency 'uuidtools', '2.2.0'
|
50
|
+
s.add_development_dependency 'codecov', '0.6.0'
|
51
|
+
s.add_development_dependency 'cucumber', '8.0.0'
|
52
|
+
s.add_development_dependency 'minitest', '5.16.1'
|
53
|
+
s.add_development_dependency 'rake', '13.0.6'
|
54
|
+
s.add_development_dependency 'rdoc', '6.4.0'
|
55
|
+
s.add_development_dependency 'rspec-rails', '5.1.2'
|
56
|
+
s.add_development_dependency 'rubocop', '1.31.1'
|
57
|
+
s.add_development_dependency 'rubocop-rspec', '2.11.1'
|
58
|
+
s.metadata['rubygems_mfa_required'] = 'true'
|
63
59
|
end
|
data/test/test__helper.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -20,7 +20,7 @@
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
21
|
# SOFTWARE.
|
22
22
|
|
23
|
-
|
23
|
+
$stdout.sync = true
|
24
24
|
|
25
25
|
require 'simplecov'
|
26
26
|
SimpleCov.start
|
data/test/test_rumble.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2018-
|
3
|
+
# Copyright (c) 2018-2022 Yegor Bugayenko
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
# of this software and associated documentation files (the 'Software'), to deal
|
@@ -28,7 +28,7 @@ require_relative '../lib/rumble/cli'
|
|
28
28
|
|
29
29
|
# Rumble main module test.
|
30
30
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
31
|
-
# Copyright:: Copyright (c) 2018-
|
31
|
+
# Copyright:: Copyright (c) 2018-2022 Yegor Bugayenko
|
32
32
|
# License:: MIT
|
33
33
|
class TestRumble < Minitest::Test
|
34
34
|
def test_basic
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rumble
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: liquid
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 5.3.0
|
20
20
|
type: :runtime
|
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:
|
26
|
+
version: 5.3.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mail
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,168 +58,168 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.
|
61
|
+
version: 3.1.1
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.
|
68
|
+
version: 3.1.1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: redcarpet
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - '='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 3.
|
75
|
+
version: 3.5.1
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - '='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 3.
|
82
|
+
version: 3.5.1
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: slop
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 4.
|
89
|
+
version: 4.9.2
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 4.
|
96
|
+
version: 4.9.2
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: uuidtools
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - '='
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.
|
103
|
+
version: 2.2.0
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - '='
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 2.
|
110
|
+
version: 2.2.0
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: codecov
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.
|
117
|
+
version: 0.6.0
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - '='
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.
|
124
|
+
version: 0.6.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: cucumber
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - '='
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
131
|
+
version: 8.0.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - '='
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
138
|
+
version: 8.0.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: minitest
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
143
|
- - '='
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 5.
|
145
|
+
version: 5.16.1
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - '='
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 5.
|
152
|
+
version: 5.16.1
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: rake
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
157
|
- - '='
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version:
|
159
|
+
version: 13.0.6
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - '='
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version:
|
166
|
+
version: 13.0.6
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
168
|
name: rdoc
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
171
|
- - '='
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 4.
|
173
|
+
version: 6.4.0
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - '='
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: 4.
|
180
|
+
version: 6.4.0
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: rspec-rails
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
185
|
- - '='
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version:
|
187
|
+
version: 5.1.2
|
188
188
|
type: :development
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
192
|
- - '='
|
193
193
|
- !ruby/object:Gem::Version
|
194
|
-
version:
|
194
|
+
version: 5.1.2
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
196
|
name: rubocop
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
199
|
- - '='
|
200
200
|
- !ruby/object:Gem::Version
|
201
|
-
version:
|
201
|
+
version: 1.31.1
|
202
202
|
type: :development
|
203
203
|
prerelease: false
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
206
|
- - '='
|
207
207
|
- !ruby/object:Gem::Version
|
208
|
-
version:
|
208
|
+
version: 1.31.1
|
209
209
|
- !ruby/object:Gem::Dependency
|
210
210
|
name: rubocop-rspec
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
212
212
|
requirements:
|
213
213
|
- - '='
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version:
|
215
|
+
version: 2.11.1
|
216
216
|
type: :development
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - '='
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 2.11.1
|
223
223
|
description: Sends newsletters to recipients
|
224
224
|
email: yegor256@gmail.com
|
225
225
|
executables:
|
@@ -233,17 +233,17 @@ files:
|
|
233
233
|
- ".gitattributes"
|
234
234
|
- ".github/ISSUE_TEMPLATE.md"
|
235
235
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
236
|
+
- ".github/workflows/codecov.yml"
|
237
|
+
- ".github/workflows/rake.yml"
|
236
238
|
- ".gitignore"
|
237
239
|
- ".pdd"
|
238
240
|
- ".rubocop.yml"
|
239
241
|
- ".rultor.yml"
|
240
242
|
- ".simplecov"
|
241
|
-
- ".travis.yml"
|
242
243
|
- Gemfile
|
243
244
|
- LICENSE.txt
|
244
245
|
- README.md
|
245
246
|
- Rakefile
|
246
|
-
- appveyor.yml
|
247
247
|
- bin/rumble
|
248
248
|
- cucumber.yml
|
249
249
|
- features/cli.feature
|
@@ -260,7 +260,8 @@ files:
|
|
260
260
|
homepage: http://github.com/yegor256/rumble
|
261
261
|
licenses:
|
262
262
|
- MIT
|
263
|
-
metadata:
|
263
|
+
metadata:
|
264
|
+
rubygems_mfa_required: 'true'
|
264
265
|
post_install_message:
|
265
266
|
rdoc_options:
|
266
267
|
- "--charset=UTF-8"
|
@@ -277,14 +278,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
277
278
|
- !ruby/object:Gem::Version
|
278
279
|
version: '0'
|
279
280
|
requirements: []
|
280
|
-
rubygems_version: 3.
|
281
|
+
rubygems_version: 3.1.2
|
281
282
|
signing_key:
|
282
|
-
specification_version:
|
283
|
+
specification_version: 4
|
283
284
|
summary: Command Line Newsletter Sending Tool
|
284
|
-
test_files:
|
285
|
-
- features/cli.feature
|
286
|
-
- features/gem_package.feature
|
287
|
-
- features/step_definitions/steps.rb
|
288
|
-
- features/support/env.rb
|
289
|
-
- test/test__helper.rb
|
290
|
-
- test/test_rumble.rb
|
285
|
+
test_files: []
|
data/.travis.yml
DELETED
data/appveyor.yml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
version: '{build}'
|
2
|
-
skip_tags: true
|
3
|
-
clone_depth: 10
|
4
|
-
branches:
|
5
|
-
only:
|
6
|
-
- master
|
7
|
-
except:
|
8
|
-
- gh-pages
|
9
|
-
os: Windows Server 2012
|
10
|
-
install:
|
11
|
-
- cmd: SET PATH=C:\Ruby23-x64\bin;%PATH%
|
12
|
-
- cmd: ruby --version
|
13
|
-
- cmd: git --version
|
14
|
-
build_script:
|
15
|
-
- bundle update
|
16
|
-
- bundle install
|
17
|
-
test_script:
|
18
|
-
- rake
|
19
|
-
cache:
|
20
|
-
- C:\Ruby200\bin -> rumble.gemspec
|
21
|
-
- C:\Ruby200\lib\ruby\gems\2.0.0 -> rumble.gemspec
|