backup-agent 1.0.1 → 1.0.2

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
  SHA1:
3
- metadata.gz: 1689395dfc68dc2a53506dc5f7d450b0b3fbdceb
4
- data.tar.gz: d68b183bcec4115436be20223d4aa91e4f4c3686
3
+ metadata.gz: 19c9ab6c8edabbfb6a565b27ef6d0faecce64689
4
+ data.tar.gz: 56903740cb34ea34005db808a93211cddb20cc3e
5
5
  SHA512:
6
- metadata.gz: 23ba26f5c0737f829ed774c6c1044333198c1bc2a74e90fc9c9fda504be0c53ea8158fef5d8a84b326c99ff9748a1670ca24841f3315288fe9241eda7a48e8b5
7
- data.tar.gz: a246424a65914411b5f555a5d05afd5e614d7c6cd7c984c8e88ff2117fd1482ebd5983d1ff004b1416add2436559e59d7b12db073650cda7c74125a7a95853bf
6
+ metadata.gz: db8433207a98dfd78cfbe4df3c5890cebad6c331d7582c4069771b26bb8e0fbbf19d1e4be0f941874c6d0943e2d74f1faf0d40d2cb79c4a23af1472bf457645b
7
+ data.tar.gz: bbbf61f7767626cc3fd51ddda09957d007eefaf3d9fe5f3262a76b2fa1b081648778fdbabdac55c41449979024df847d189bc3bf87fa83761d06964228a2a850
data/backup-agent.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'backup-agent'
5
- s.version = '1.0.1'
5
+ s.version = '1.0.2'
6
6
  s.authors = ['Yaroslav Konoplov']
7
7
  s.email = ['yaroslav@inbox.com']
8
8
  s.summary = 'Easy AWS S3 backup'
data/lib/backup-agent.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  puts "Ruby version #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
2
2
 
3
- %w(rubygems aws-sdk fileutils confo-config shellwords pry).each { |el| require(el) }
3
+ %w( rubygems aws-sdk fileutils confo-config shellwords ).each { |el| require(el) }
4
4
 
5
5
  %w( abstract_storage abstract_storage_config abstract_storage_object
6
6
  s3_storage s3_config s3_object
@@ -1,7 +1,6 @@
1
1
  module Backup
2
2
  class Task < Confo::Config
3
3
  def initialize(*)
4
- super
5
4
  set :mysql_user, 'root'
6
5
  set :mysql_password, 'root'
7
6
  set :mysql_host, 'localhost'
@@ -48,6 +47,7 @@ module Backup
48
47
  set :files, {}
49
48
 
50
49
  set :days_to_keep_backups, 30
50
+ super
51
51
  end
52
52
  end
53
53
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backup-agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Konoplov