fezzik 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.
- data/{README → README.md} +0 -0
- data/TODO.md +0 -0
- data/fezzik.gemspec +5 -3
- metadata +39 -8
- data/TODO +0 -1
data/{README → README.md}
RENAMED
|
File without changes
|
data/TODO.md
ADDED
|
File without changes
|
data/fezzik.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "fezzik"
|
|
3
|
-
s.version = "0.1.
|
|
3
|
+
s.version = "0.1.1"
|
|
4
4
|
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new(">=0") if s.respond_to? :required_rubygems_version=
|
|
6
6
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
@@ -15,11 +15,13 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
|
|
16
16
|
s.executables = %w(fez fezify)
|
|
17
17
|
s.files = %w(
|
|
18
|
-
README
|
|
19
|
-
TODO
|
|
18
|
+
README.md
|
|
19
|
+
TODO.md
|
|
20
20
|
fezzik.gemspec
|
|
21
21
|
lib/fezzik.rb
|
|
22
22
|
bin/fez
|
|
23
23
|
bin/fezify
|
|
24
24
|
)
|
|
25
|
+
s.add_dependency("rake", ">=0.8.7")
|
|
26
|
+
s.add_dependency("rake-remote_task", ">=2.0.2")
|
|
25
27
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fezzik
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Daniel MacDougall
|
|
@@ -15,10 +15,41 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-03-
|
|
18
|
+
date: 2011-03-02 00:00:00 -08:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: rake
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 49
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
- 8
|
|
33
|
+
- 7
|
|
34
|
+
version: 0.8.7
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: rake-remote_task
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 11
|
|
46
|
+
segments:
|
|
47
|
+
- 2
|
|
48
|
+
- 0
|
|
49
|
+
- 2
|
|
50
|
+
version: 2.0.2
|
|
51
|
+
type: :runtime
|
|
52
|
+
version_requirements: *id002
|
|
22
53
|
description: A light deployment system that gets out of your way
|
|
23
54
|
email: dmacdougall@gmail.com
|
|
24
55
|
executables:
|
|
@@ -29,8 +60,8 @@ extensions: []
|
|
|
29
60
|
extra_rdoc_files: []
|
|
30
61
|
|
|
31
62
|
files:
|
|
32
|
-
- README
|
|
33
|
-
- TODO
|
|
63
|
+
- README.md
|
|
64
|
+
- TODO.md
|
|
34
65
|
- fezzik.gemspec
|
|
35
66
|
- lib/fezzik.rb
|
|
36
67
|
- bin/fez
|