martilla 0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1298cbc9a2e46470a324413da4f9e0c478d810f166c9088a8a512c1351d634a0
4
+ data.tar.gz: 04ff757ae6fd6bca7b61803315f4938c9788edce5b3418d1a347529dd670b626
5
+ SHA512:
6
+ metadata.gz: ce4b0564bd205c4d3dc51170f5f1715d67516a3676fbeca4d1baa72288300c1acab2c40c5f535c3cdb3b92042bcc0080b7995d66c8065fdb63e3fef942afb520
7
+ data.tar.gz: 5f6f19da462b301af362e175642075edb456412eedbaae3154f62f9225e7f436b679d4b1c56ac98a40c564d9727a354fd14cb3446eb4803dbf045621796e5a21
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.3
7
+ before_install: gem install bundler -v 2.0.2
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at fdov88@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in martilla.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,54 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ martilla (0.0.1)
5
+ aws-ses (~> 0.6.0)
6
+ pony (~> 1.13)
7
+ thor (~> 0.20.3)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ aws-ses (0.6.0)
13
+ builder
14
+ mail (> 2.2.5)
15
+ mime-types
16
+ xml-simple
17
+ builder (3.2.3)
18
+ diff-lcs (1.3)
19
+ mail (2.7.1)
20
+ mini_mime (>= 0.1.1)
21
+ mime-types (3.3)
22
+ mime-types-data (~> 3.2015)
23
+ mime-types-data (3.2019.1009)
24
+ mini_mime (1.0.2)
25
+ pony (1.13.1)
26
+ mail (>= 2.0)
27
+ rake (13.0.0)
28
+ rspec (3.9.0)
29
+ rspec-core (~> 3.9.0)
30
+ rspec-expectations (~> 3.9.0)
31
+ rspec-mocks (~> 3.9.0)
32
+ rspec-core (3.9.0)
33
+ rspec-support (~> 3.9.0)
34
+ rspec-expectations (3.9.0)
35
+ diff-lcs (>= 1.2.0, < 2.0)
36
+ rspec-support (~> 3.9.0)
37
+ rspec-mocks (3.9.0)
38
+ diff-lcs (>= 1.2.0, < 2.0)
39
+ rspec-support (~> 3.9.0)
40
+ rspec-support (3.9.0)
41
+ thor (0.20.3)
42
+ xml-simple (1.1.5)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ bundler (~> 2.0)
49
+ martilla!
50
+ rake (~> 13.0)
51
+ rspec (~> 3.9)
52
+
53
+ BUNDLED WITH
54
+ 2.0.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Fernando Valverde
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 ADDED
@@ -0,0 +1,41 @@
1
+ # Martilla
2
+
3
+ This is the first commit at the backup tool named Martilla. More to come soon.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'martilla'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install martilla
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Development
26
+
27
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+
29
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/martilla. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
+
39
+ ## Code of Conduct
40
+
41
+ Everyone interacting in the Martilla project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/martilla/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'martilla'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require 'pry'
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
data/bin/martilla ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'martilla'
5
+
6
+ Martilla::CLI.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,27 @@
1
+ require 'yaml'
2
+ require 'thor'
3
+
4
+ module Martilla
5
+ class CLI < Thor
6
+ desc "backup FILEPATH", "Generates a backup based on a config file located at FILEPATH"
7
+ def backup(filepath)
8
+ file_path = File.join(Dir.pwd, filepath)
9
+ begin
10
+ backup_config = YAML.load_file(file_path)
11
+ rescue Psych::SyntaxError
12
+ puts "Invalid yaml-file found, at #{file_path}"
13
+ rescue Errno::EACCES
14
+ puts "Couldn't access file due to permissions at #{file_path}"
15
+ rescue Errno::ENOENT
16
+ puts "Couldn't access non-existent file #{file_path}"
17
+ else
18
+ execute_backup(backup_config)
19
+ end
20
+ end
21
+
22
+ desc "setup FILEPATH", "Generates a sample backup config file at FILEPATH"
23
+ def setup(filepath = './martilla.yml')
24
+ puts filepath
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,21 @@
1
+ require 'forwardable'
2
+
3
+ module Martilla
4
+ class Database
5
+ extend Forwardable
6
+
7
+ def initialize(config)
8
+ # When a new core target is added to the project include it here
9
+ case config['type'].downcase
10
+ when 'postgres'
11
+ @database = Databases::Postgres.new(config['options'])
12
+ when 'mysql'
13
+ @database = Databases::Mysql.new(config['options'])
14
+ else
15
+ raise Error.new("Invalid Database type: #{config['type']}")
16
+ end
17
+ end
18
+
19
+ def_delegators :@database, :dump
20
+ end
21
+ end
@@ -0,0 +1,11 @@
1
+ class Martilla::Databases::Base
2
+ attr_reader :options
3
+
4
+ def initialize(opts)
5
+ @options = opts
6
+ end
7
+
8
+ def temp_filepath
9
+ @options['tmp_file'] || '/tmp/db.sql'
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Databases::Mysql < Martilla::Databases::Base
2
+ def dump
3
+
4
+ end
5
+ end
@@ -0,0 +1,4 @@
1
+ class Martilla::Databases::Postgres < Martilla::Databases::Base
2
+ def dump
3
+ end
4
+ end
@@ -0,0 +1,23 @@
1
+ require 'forwardable'
2
+
3
+ module Martilla
4
+ class Notifier
5
+ extend Forwardable
6
+
7
+ def initialize(config)
8
+ # When a new core target is added to the project include it here
9
+ case config['type'].downcase
10
+ when 'email'
11
+ @notifier = Notifiers::Email.new(config['options'])
12
+ when 'ses'
13
+ @notifier = Notifiers::Ses.new(config['options'])
14
+ when 'slack'
15
+ @notifier = Notifiers::Slack.new(config['options'])
16
+ else
17
+ raise Error.new("Invalid Notifier type: #{config['type']}")
18
+ end
19
+ end
20
+
21
+ def_delegators :@notifier, :success, :error
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ class Martilla::Notifiers::Base
2
+ attr_reader :options
3
+
4
+ def initialize(opts)
5
+ @options = opts
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Notifiers::Email < Martilla::Notifiers::Base
2
+ def notify(opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Notifiers::Ses < Martilla::Notifiers::Base
2
+ def notify(opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Notifiers::Slack < Martilla::Notifiers::Base
2
+ def notify(opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,23 @@
1
+ require 'forwardable'
2
+
3
+ module Martilla
4
+ class Storage
5
+ extend Forwardable
6
+
7
+ def initialize(config)
8
+ # When a new core target is added to the project include it here
9
+ case config['type'].downcase
10
+ when 'local'
11
+ @storage = Storages::Local.new(config['options'])
12
+ when 's3'
13
+ @storage = Storages::S3.new(config['options'])
14
+ when 'scp'
15
+ @storage = Storages::Scp.new(config['options'])
16
+ else
17
+ raise Error.new("Invalid Storage type: #{config['type']}")
18
+ end
19
+ end
20
+
21
+ def_delegators :@storage, :persist
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ class Martilla::Storages::Base
2
+ attr_reader :options
3
+
4
+ def initialize(opts)
5
+ @options = opts
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Storages::Local < Martilla::Storages::Base
2
+ def persist(filepath, opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Storages::S3 < Martilla::Storages::Base
2
+ def persist(filepath, opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class Martilla::Storages::Scp < Martilla::Storages::Base
2
+ def persist(filepath, opts)
3
+
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Martilla
2
+ VERSION = '0.0.1'
3
+ end
data/lib/martilla.rb ADDED
@@ -0,0 +1,31 @@
1
+ require 'martilla/version'
2
+ require 'martilla/cli'
3
+
4
+ module Martilla
5
+ class Error < StandardError; end
6
+
7
+ def execute_backup(config)
8
+ puts "EXECUTING BACKUP WITH CONFIG: #{config}"
9
+ db = Database.new(config['db'])
10
+ storage = Storage.new(config['storage'])
11
+ notifiers = config['notifiers'].map { |c| Notifier.new(c) }
12
+
13
+ begin
14
+ # Perform DB dump & storage of backup
15
+ temp_filepath = db.dump
16
+ storage.persist(temp_filepath)
17
+ rescue Exception => e
18
+ puts "EXCEPTION RAISED: #{e.inspect}"
19
+ notifiers.each do |notifier|
20
+ notifier.error(e)
21
+ end
22
+ else
23
+ puts "SUCCESS"
24
+ notifiers.each do |notifier|
25
+ notifier.success
26
+ end
27
+ end
28
+
29
+ File.delete(temp_filepath) if File.exist?(temp_filepath)
30
+ end
31
+ end
data/martilla.gemspec ADDED
@@ -0,0 +1,38 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'martilla/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'martilla'
7
+ spec.version = Martilla::VERSION
8
+ spec.authors = ['Fernando Valverde']
9
+ spec.email = ['fdov88@gmail.com']
10
+
11
+ spec.summary = 'Modern backup tool'
12
+ spec.description = ''
13
+ spec.homepage = 'https://github.com/fdoxyz/martilla'
14
+ spec.license = 'MIT'
15
+
16
+ # spec.metadata['allowed_push_host'] = 'TODO: Set to 'http://mygemserver.com''
17
+
18
+ spec.metadata['homepage_uri'] = spec.homepage
19
+ spec.metadata['source_code_uri'] = 'https://github.com/fdoxyz/martilla'
20
+ spec.metadata['changelog_uri'] = 'https://github.com/fdoxyz/martilla/changelog'
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
25
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ end
27
+ spec.bindir = 'exe'
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ['lib']
30
+
31
+ spec.add_dependency 'pony', '~> 1.13'
32
+ spec.add_dependency 'aws-ses', '~> 0.6.0'
33
+ spec.add_dependency 'thor', '~> 0.20.3'
34
+
35
+ spec.add_development_dependency 'bundler', '~> 2.0'
36
+ spec.add_development_dependency 'rake', '~> 13.0'
37
+ spec.add_development_dependency 'rspec', '~> 3.9'
38
+ end
metadata ADDED
@@ -0,0 +1,160 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: martilla
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Fernando Valverde
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-10-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pony
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: aws-ses
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.6.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.20.3
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.20.3
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '13.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '13.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.9'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.9'
97
+ description: ''
98
+ email:
99
+ - fdov88@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - Gemfile.lock
110
+ - LICENSE.txt
111
+ - README.md
112
+ - Rakefile
113
+ - bin/console
114
+ - bin/martilla
115
+ - bin/setup
116
+ - lib/martilla.rb
117
+ - lib/martilla/cli.rb
118
+ - lib/martilla/database.rb
119
+ - lib/martilla/databases/base.rb
120
+ - lib/martilla/databases/mysql.rb
121
+ - lib/martilla/databases/postgres.rb
122
+ - lib/martilla/notifier.rb
123
+ - lib/martilla/notifiers/base.rb
124
+ - lib/martilla/notifiers/email.rb
125
+ - lib/martilla/notifiers/ses.rb
126
+ - lib/martilla/notifiers/slack.rb
127
+ - lib/martilla/storage.rb
128
+ - lib/martilla/storages/base.rb
129
+ - lib/martilla/storages/local.rb
130
+ - lib/martilla/storages/s3.rb
131
+ - lib/martilla/storages/scp.rb
132
+ - lib/martilla/version.rb
133
+ - martilla.gemspec
134
+ homepage: https://github.com/fdoxyz/martilla
135
+ licenses:
136
+ - MIT
137
+ metadata:
138
+ homepage_uri: https://github.com/fdoxyz/martilla
139
+ source_code_uri: https://github.com/fdoxyz/martilla
140
+ changelog_uri: https://github.com/fdoxyz/martilla/changelog
141
+ post_install_message:
142
+ rdoc_options: []
143
+ require_paths:
144
+ - lib
145
+ required_ruby_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ required_rubygems_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ requirements: []
156
+ rubygems_version: 3.0.3
157
+ signing_key:
158
+ specification_version: 4
159
+ summary: Modern backup tool
160
+ test_files: []