tms 1.0.0 → 1.0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +4 -4
- data/VERSION +1 -1
- data/tms.gemspec +60 -0
- metadata +4 -2
data/README.markdown
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
# tms
|
2
2
|
|
3
3
|
Time Machine Status
|
4
4
|
|
5
|
-
View avaliable Time Machine backups and show
|
5
|
+
View avaliable Time Machine backups and show changes
|
6
6
|
|
7
|
-
Name and idea from http://www.fernlightning.com/doku.php?id=software:misc:tms
|
7
|
+
Name and idea from [fernlightning.com](http://www.fernlightning.com/doku.php?id=software:misc:tms)
|
8
8
|
|
9
|
-
|
9
|
+
## Copyright
|
10
10
|
|
11
11
|
Copyright (c) 2010 Boba Fat. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0
|
1
|
+
1.0.0.1
|
data/tms.gemspec
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{tms}
|
8
|
+
s.version = "1.0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Boba Fat"]
|
12
|
+
s.date = %q{2010-11-09}
|
13
|
+
s.default_executable = %q{tms}
|
14
|
+
s.description = %q{View avaliable Time Machine backups and show diff}
|
15
|
+
s.executables = ["tms"]
|
16
|
+
s.extensions = ["ext/extconf.rb"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.markdown"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".gitignore",
|
23
|
+
"LICENSE",
|
24
|
+
"README.markdown",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"bin/tms",
|
28
|
+
"ext/extconf.rb",
|
29
|
+
"ext/tms.c",
|
30
|
+
"lib/tms.rb",
|
31
|
+
"lib/tms/backup.rb",
|
32
|
+
"lib/tms/space.rb",
|
33
|
+
"tms.gemspec"
|
34
|
+
]
|
35
|
+
s.homepage = %q{http://github.com/toy/tms}
|
36
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
37
|
+
s.require_paths = ["lib"]
|
38
|
+
s.rubygems_version = %q{1.3.7}
|
39
|
+
s.summary = %q{Time Machine Status}
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
+
s.specification_version = 3
|
44
|
+
|
45
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
46
|
+
s.add_runtime_dependency(%q<colored>, [">= 0"])
|
47
|
+
s.add_runtime_dependency(%q<xattr>, [">= 0"])
|
48
|
+
s.add_runtime_dependency(%q<mutter>, [">= 0"])
|
49
|
+
else
|
50
|
+
s.add_dependency(%q<colored>, [">= 0"])
|
51
|
+
s.add_dependency(%q<xattr>, [">= 0"])
|
52
|
+
s.add_dependency(%q<mutter>, [">= 0"])
|
53
|
+
end
|
54
|
+
else
|
55
|
+
s.add_dependency(%q<colored>, [">= 0"])
|
56
|
+
s.add_dependency(%q<xattr>, [">= 0"])
|
57
|
+
s.add_dependency(%q<mutter>, [">= 0"])
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 93
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
9
|
- 0
|
10
|
-
|
10
|
+
- 1
|
11
|
+
version: 1.0.0.1
|
11
12
|
platform: ruby
|
12
13
|
authors:
|
13
14
|
- Boba Fat
|
@@ -81,6 +82,7 @@ files:
|
|
81
82
|
- lib/tms.rb
|
82
83
|
- lib/tms/backup.rb
|
83
84
|
- lib/tms/space.rb
|
85
|
+
- tms.gemspec
|
84
86
|
has_rdoc: true
|
85
87
|
homepage: http://github.com/toy/tms
|
86
88
|
licenses: []
|