jemmyw-backs3 0.0.2 → 0.0.3

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.
data/lib/backs3/backup.rb CHANGED
@@ -33,7 +33,7 @@ module Backs3
33
33
  def files_to_backup
34
34
  @files_to_backup ||= begin
35
35
  Dir.glob(File.join(@options['folder'], '**', '**')).select do |file|
36
- if File.directory?(file)
36
+ if File.directory?(file) || File.symlink?(file)
37
37
  false
38
38
  else
39
39
  if @options['exclude'].blank? || file !~ /#{@options['exclude']}/
@@ -2,7 +2,7 @@ module Backs3 #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jemmyw-backs3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Wells