gemsonrails 0.4.4 → 0.5.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 +14 -0
- data/Manifest.txt +21 -0
- data/{README → README.txt} +0 -0
- data/Rakefile +89 -81
- data/lib/gemsonrails/version.rb +2 -2
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/test/{gems_to_rails_test.rb → test_gemsonrails.rb} +1 -1
- data/website/index.html +117 -0
- data/website/index.txt +56 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +129 -0
- data/website/template.rhtml +48 -0
- metadata +21 -25
- data/CHANGELOG +0 -2
- data/test/all_tests.rb +0 -1
metadata
CHANGED
@@ -3,12 +3,12 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: gemsonrails
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
6
|
+
version: 0.5.0
|
7
7
|
date: 2007-05-06 00:00:00 +02:00
|
8
8
|
summary: Link or freeze RubyGems into your rails apps, instead of plugins
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
|
-
email:
|
11
|
+
email: your contact email for bug fixes and info
|
12
12
|
homepage: http://gemsonrails.rubyforge.org
|
13
13
|
rubyforge_project: gemsonrails
|
14
14
|
description: Link or freeze RubyGems into your rails apps, instead of plugins
|
@@ -27,40 +27,36 @@ signing_key:
|
|
27
27
|
cert_chain:
|
28
28
|
post_install_message:
|
29
29
|
authors:
|
30
|
-
-
|
30
|
+
- nicwilliams
|
31
31
|
files:
|
32
|
-
-
|
33
|
-
-
|
32
|
+
- History.txt
|
33
|
+
- Manifest.txt
|
34
|
+
- README.txt
|
34
35
|
- Rakefile
|
35
36
|
- bin/gemsonrails
|
36
|
-
- test/all_tests.rb
|
37
|
-
- test/gems_to_rails_test.rb
|
38
|
-
- test/test_helper.rb
|
39
|
-
- lib/gemsonrails
|
40
37
|
- lib/gemsonrails.rb
|
41
38
|
- lib/gemsonrails/version.rb
|
39
|
+
- scripts/txt2html
|
40
|
+
- setup.rb
|
42
41
|
- templates/init.rb
|
43
42
|
- templates/tasks_gems_freeze.rake
|
44
43
|
- templates/tasks_gems_link.rake
|
45
44
|
- templates/tasks_gems_unfreeze.rake
|
46
45
|
- templates/tasks_load_tasks_in_gems.rake
|
47
|
-
|
46
|
+
- test/test_gemsonrails.rb
|
47
|
+
- test/test_helper.rb
|
48
|
+
- website/index.html
|
49
|
+
- website/index.txt
|
50
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
51
|
+
- website/stylesheets/screen.css
|
52
|
+
- website/template.rhtml
|
53
|
+
test_files:
|
54
|
+
- test/test_gemsonrails.rb
|
55
|
+
- test/test_helper.rb
|
56
|
+
rdoc_options: []
|
57
|
+
|
58
|
+
extra_rdoc_files: []
|
48
59
|
|
49
|
-
rdoc_options:
|
50
|
-
- --quiet
|
51
|
-
- --title
|
52
|
-
- gemsonrails documentation
|
53
|
-
- --opname
|
54
|
-
- index.html
|
55
|
-
- --line-numbers
|
56
|
-
- --main
|
57
|
-
- README
|
58
|
-
- --inline-source
|
59
|
-
- --exclude
|
60
|
-
- ^(examples|extras)/
|
61
|
-
extra_rdoc_files:
|
62
|
-
- README
|
63
|
-
- CHANGELOG
|
64
60
|
executables:
|
65
61
|
- gemsonrails
|
66
62
|
extensions: []
|
data/CHANGELOG
DELETED
data/test/all_tests.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
Dir['**/*_test.rb'].each { |test_case| require test_case }
|