fackup 0.0.1 → 0.0.1.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.
Files changed (3) hide show
  1. data/lib/fackup.rb +1 -1
  2. data/lib/fackup/cli.rb +1 -1
  3. metadata +2 -1
data/lib/fackup.rb CHANGED
@@ -22,7 +22,7 @@ require 'fackup/db'
22
22
  require 'fackup/image'
23
23
 
24
24
  module FackUp
25
- VERSION = '0.0.1'
25
+ VERSION = '0.0.1.1'
26
26
 
27
27
  def self.restore (image)
28
28
  FackUp::Image.new(image, 'r', true) {|img|
data/lib/fackup/cli.rb CHANGED
@@ -68,7 +68,7 @@ module FackUp
68
68
 
69
69
  desc 'list [IMAGE]', 'list backup files, if given, list file in image files'
70
70
  def list (image=nil)
71
- if image and File.esists?(image)
71
+ if image and File.exists?(image)
72
72
  FackUp::Image.new(image, 'r', true) {|img|
73
73
  img.each {|file|
74
74
  puts file.name
metadata CHANGED
@@ -6,7 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 0
8
8
  - 1
9
- version: 0.0.1
9
+ - 1
10
+ version: 0.0.1.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - shura