rplug 0.0.1 → 0.1.0
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/History.txt +2 -2
- data/README.txt +3 -3
- data/Rakefile +6 -3
- data/lib/rplug.rb +1 -1
- metadata +13 -4
data/History.txt
CHANGED
data/README.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
# -*- ruby -*-
|
|
2
|
-
|
|
3
1
|
require 'rubygems'
|
|
4
2
|
require 'hoe'
|
|
5
3
|
require './lib/rplug.rb'
|
|
6
4
|
|
|
7
5
|
Hoe.new('rplug', Rplug::VERSION) do |p|
|
|
6
|
+
p.author = ['Jamie Macey']
|
|
7
|
+
p.email = 'jamie.macey@gmail.com'
|
|
8
|
+
p.summary = "RPlug is a plugin manager for Rails"
|
|
9
|
+
|
|
8
10
|
p.rubyforge_name = 'rplug'
|
|
11
|
+
p.extra_deps = ['source_control']
|
|
12
|
+
|
|
9
13
|
# p.summary = 'FIX'
|
|
10
14
|
# p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
|
|
11
15
|
# p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
|
|
@@ -18,4 +22,3 @@ task :rcov do
|
|
|
18
22
|
system "rcov -Ilib test/test_*.rb"
|
|
19
23
|
end
|
|
20
24
|
|
|
21
|
-
# vim: syntax=Ruby
|
data/lib/rplug.rb
CHANGED
metadata
CHANGED
|
@@ -3,12 +3,12 @@ rubygems_version: 0.9.2
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: rplug
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0
|
|
6
|
+
version: 0.1.0
|
|
7
7
|
date: 2007-02-17 00:00:00 -08:00
|
|
8
|
-
summary:
|
|
8
|
+
summary: RPlug is a plugin manager for Rails
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
|
-
email:
|
|
11
|
+
email: jamie.macey@gmail.com
|
|
12
12
|
homepage: http://www.zenspider.com/ZSS/Products/rplug/
|
|
13
13
|
rubyforge_project: rplug
|
|
14
14
|
description: The author was too lazy to write a description
|
|
@@ -27,7 +27,7 @@ signing_key:
|
|
|
27
27
|
cert_chain:
|
|
28
28
|
post_install_message:
|
|
29
29
|
authors:
|
|
30
|
-
-
|
|
30
|
+
- Jamie Macey
|
|
31
31
|
files:
|
|
32
32
|
- History.txt
|
|
33
33
|
- Manifest.txt
|
|
@@ -49,6 +49,15 @@ extensions: []
|
|
|
49
49
|
requirements: []
|
|
50
50
|
|
|
51
51
|
dependencies:
|
|
52
|
+
- !ruby/object:Gem::Dependency
|
|
53
|
+
name: source_control
|
|
54
|
+
version_requirement:
|
|
55
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 0.0.0
|
|
60
|
+
version:
|
|
52
61
|
- !ruby/object:Gem::Dependency
|
|
53
62
|
name: hoe
|
|
54
63
|
version_requirement:
|