Lidia 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/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ Lidia (0.0.2)
5
+ open4 (= 0.9.6)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ columnize (0.3.2)
11
+ diff-lcs (1.1.2)
12
+ linecache (0.43)
13
+ open4 (0.9.6)
14
+ rspec (2.3.0)
15
+ rspec-core (~> 2.3.0)
16
+ rspec-expectations (~> 2.3.0)
17
+ rspec-mocks (~> 2.3.0)
18
+ rspec-core (2.3.1)
19
+ rspec-expectations (2.3.0)
20
+ diff-lcs (~> 1.1.2)
21
+ rspec-mocks (2.3.0)
22
+ ruby-debug (0.10.4)
23
+ columnize (>= 0.1)
24
+ ruby-debug-base (~> 0.10.4.0)
25
+ ruby-debug-base (0.10.4)
26
+ linecache (>= 0.3)
27
+
28
+ PLATFORMS
29
+ ruby
30
+
31
+ DEPENDENCIES
32
+ Lidia!
33
+ open4 (= 0.9.6)
34
+ rspec (~> 2.3.0)
35
+ ruby-debug (~> 0.10.3)
@@ -1,3 +1,9 @@
1
+ === 0.0.3 2010-12-30
2
+
3
+ * minor changes
4
+ * removed useless dependencie open4. Lidia does not execute commands
5
+ * updated dar definition
6
+
1
7
  === 0.0.2 2010-12-30
2
8
 
3
9
  * 1 major enhancement:
@@ -6,5 +6,5 @@ require 'lidia/parameter'
6
6
  require 'lidia/source'
7
7
 
8
8
  module Lidia
9
- VERSION = '0.0.2'
9
+ VERSION = '0.0.3'
10
10
  end
@@ -6,17 +6,16 @@ Gem::Specification.new do |s|
6
6
  s.summary = "Lidia is a yml based command contructor class. Aims to be easy to use and to provide an easy way to remember tons of commands"
7
7
  s.description = "Lidia is a yml based command contructor class. Aims to be easy to use and to provide an easy way to remember tons of commands"
8
8
  s.authors = ['Gnoxys' ]
9
+ s.email = ['development@gnoxys.net']
10
+ s.homepage = 'http://gitorious.org/gnoxys/lidia'
11
+
9
12
  s.files = `git ls-files`.split("\n")
10
- s.add_runtime_dependency('open4', '0.9.6')
11
-
13
+
12
14
  s.add_development_dependency('rspec', '~> 2.3.0')
13
15
 
14
- # s.add_development_dependency('capybara', '~> 0.3.9')
15
- # s.add_development_dependency('sqlite3-ruby')
16
+
16
17
  if RUBY_VERSION < '1.9'
17
18
  s.add_development_dependency('ruby-debug', '~> 0.10.3')
18
19
  end
19
- # s.add_development_dependency('rspec-rails', '~> 2.0.0')
20
- # s.add_development_dependency('factory_girl', '~> 1.3.2')
21
- # s.add_development_dependency('forgery', '~> 0.3.6')
20
+
22
21
  end
@@ -19,6 +19,37 @@
19
19
  :option_alias: [ --test ]
20
20
  :description: checks the backup integrity
21
21
  :required_argument: true
22
+ :diff:
23
+ :option: -d
24
+ :option_alias: [ --diff ]
25
+ :description: compares saved files in the backup with those in the filesystem
26
+ :required_argument: true
27
+ :isolate:
28
+ :option: -C
29
+ :option_alias: [ --isolate ]
30
+ :description: isolate a catalogue from its archive
31
+ :required_argument: true
32
+ :merge:
33
+ :option: -+
34
+ :option_alias: [ --merge ]
35
+ :description: create a subset archive from one or two existing archives
36
+ :required_argument: true
37
+ :version:
38
+ :option: -V
39
+ :option_alias: [ --version ]
40
+ :description: displays version information
41
+ :help:
42
+ :option: -h
43
+ :option_alias: [ --help ]
44
+ :description: displays help information
45
+ :verbose:
46
+ :option: -v
47
+ :option_alias: [ --verbose ]
48
+ :description: verbose output
49
+ :with_beep:
50
+ :option: -b
51
+ :option_alias: [ --beep ]
52
+ :description: makes the terminal ring when user action is required
22
53
  :root_backup:
23
54
  :option: -R
24
55
  :description: root point to start backup
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Lidia
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gnoxys
@@ -18,26 +18,10 @@ cert_chain: []
18
18
  date: 2010-12-30 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
- - !ruby/object:Gem::Dependency
22
- name: open4
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - "="
28
- - !ruby/object:Gem::Version
29
- hash: 55
30
- segments:
31
- - 0
32
- - 9
33
- - 6
34
- version: 0.9.6
35
- type: :runtime
36
- version_requirements: *id001
37
21
  - !ruby/object:Gem::Dependency
38
22
  name: rspec
39
23
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ requirement: &id001 !ruby/object:Gem::Requirement
41
25
  none: false
42
26
  requirements:
43
27
  - - ~>
@@ -49,11 +33,11 @@ dependencies:
49
33
  - 0
50
34
  version: 2.3.0
51
35
  type: :development
52
- version_requirements: *id002
36
+ version_requirements: *id001
53
37
  - !ruby/object:Gem::Dependency
54
38
  name: ruby-debug
55
39
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
40
+ requirement: &id002 !ruby/object:Gem::Requirement
57
41
  none: false
58
42
  requirements:
59
43
  - - ~>
@@ -65,9 +49,10 @@ dependencies:
65
49
  - 3
66
50
  version: 0.10.3
67
51
  type: :development
68
- version_requirements: *id003
52
+ version_requirements: *id002
69
53
  description: Lidia is a yml based command contructor class. Aims to be easy to use and to provide an easy way to remember tons of commands
70
54
  email:
55
+ - development@gnoxys.net
71
56
  executables: []
72
57
 
73
58
  extensions: []
@@ -76,6 +61,8 @@ extra_rdoc_files: []
76
61
 
77
62
  files:
78
63
  - .gitignore
64
+ - Gemfile
65
+ - Gemfile.lock
79
66
  - History.txt
80
67
  - Manifest.txt
81
68
  - PostInstall.txt
@@ -94,7 +81,7 @@ files:
94
81
  - sources/ls.lidia.yml
95
82
  - spec/lidia/command_spec.rb
96
83
  has_rdoc: true
97
- homepage:
84
+ homepage: http://gitorious.org/gnoxys/lidia
98
85
  licenses: []
99
86
 
100
87
  post_install_message: