homeschool 0.0.1.44 → 0.0.1.45
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/Rakefile +1 -1
- data/lib/form_buildr.rb +1 -1
- metadata +54 -47
data/Rakefile
CHANGED
|
@@ -19,7 +19,7 @@ spec = Gem::Specification.new do |s|
|
|
|
19
19
|
s.name = PKG_NAME
|
|
20
20
|
s.version = PKG_VERSION
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
|
22
|
-
s.
|
|
22
|
+
s.authors = ['Paul Nicholson', 'Austin Taylor']
|
|
23
23
|
s.email = 'paul@webpowerdesign.net'
|
|
24
24
|
s.homepage = 'http://homeschool.rubyforge.org/'
|
|
25
25
|
s.rubyforge_project = PKG_RUBYFORGE_PROJECT
|
data/lib/form_buildr.rb
CHANGED
|
@@ -50,7 +50,7 @@ module Homeschool::FormBuildr
|
|
|
50
50
|
|
|
51
51
|
def labeled_radio_button(method, tag_value, options={})
|
|
52
52
|
id = %{#{@object_name}_#{method}_#{tag_value}}
|
|
53
|
-
send(:radio_button, method, tag_value, {:id => id}.update(options.without(:label, :no_colon))) + send(:label_for, method, {:no_colon => true, :label => tag_value.humanize, :id => id}.update(options))
|
|
53
|
+
send(:radio_button, method, tag_value, {:id => id}.update(options.without(:label, :no_colon))) + send(:label_for, method, {:no_colon => true, :label => tag_value.to_s.humanize, :id => id}.update(options))
|
|
54
54
|
end
|
|
55
55
|
|
|
56
56
|
def labeled_check_box(method, options={}, checked_value="1", unchecked_value="0")
|
metadata
CHANGED
|
@@ -1,34 +1,38 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.2
|
|
3
|
-
specification_version: 1
|
|
4
2
|
name: homeschool
|
|
5
3
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0.1.
|
|
7
|
-
date: 2007-10-08 00:00:00 -04:00
|
|
8
|
-
summary: The homeschool gem
|
|
9
|
-
require_paths:
|
|
10
|
-
- lib
|
|
11
|
-
email: paul@webpowerdesign.net
|
|
12
|
-
homepage: http://homeschool.rubyforge.org/
|
|
13
|
-
rubyforge_project: homeschool
|
|
14
|
-
description: The Homeschool Way
|
|
15
|
-
autorequire: homeschool
|
|
16
|
-
default_executable: homeschool
|
|
17
|
-
bindir: bin
|
|
18
|
-
has_rdoc: true
|
|
19
|
-
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 1.8.4
|
|
24
|
-
version:
|
|
4
|
+
version: 0.0.1.45
|
|
25
5
|
platform: ruby
|
|
26
|
-
signing_key:
|
|
27
|
-
cert_chain:
|
|
28
|
-
post_install_message:
|
|
29
6
|
authors:
|
|
30
|
-
-
|
|
31
|
-
|
|
7
|
+
- Paul Nicholson
|
|
8
|
+
- Austin Taylor
|
|
9
|
+
autorequire: homeschool
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2008-02-04 00:00:00 -05:00
|
|
14
|
+
default_executable: homeschool
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: metaid
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "1.0"
|
|
24
|
+
version:
|
|
25
|
+
description: The Homeschool Way
|
|
26
|
+
email: paul@webpowerdesign.net
|
|
27
|
+
executables:
|
|
28
|
+
- bfight
|
|
29
|
+
- gfight
|
|
30
|
+
- homeschool
|
|
31
|
+
- svm
|
|
32
|
+
extensions: []
|
|
33
|
+
|
|
34
|
+
extra_rdoc_files:
|
|
35
|
+
- README
|
|
32
36
|
files:
|
|
33
37
|
- README
|
|
34
38
|
- Rakefile
|
|
@@ -48,8 +52,9 @@ files:
|
|
|
48
52
|
- lib/model_extensions.rb
|
|
49
53
|
- lib/standardized_test.rb
|
|
50
54
|
- lib/tame_rails.rb
|
|
51
|
-
|
|
52
|
-
|
|
55
|
+
has_rdoc: true
|
|
56
|
+
homepage: http://homeschool.rubyforge.org/
|
|
57
|
+
post_install_message:
|
|
53
58
|
rdoc_options:
|
|
54
59
|
- --title
|
|
55
60
|
- homeschool
|
|
@@ -57,24 +62,26 @@ rdoc_options:
|
|
|
57
62
|
- README
|
|
58
63
|
- --line-numbers
|
|
59
64
|
- --inline-source
|
|
60
|
-
|
|
61
|
-
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
require_paths:
|
|
66
|
+
- lib
|
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: 1.8.4
|
|
72
|
+
version:
|
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: "0"
|
|
78
|
+
version:
|
|
69
79
|
requirements:
|
|
70
80
|
- none
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
- !ruby/object:Gem::Version
|
|
79
|
-
version: "1.0"
|
|
80
|
-
version:
|
|
81
|
+
rubyforge_project: homeschool
|
|
82
|
+
rubygems_version: 1.0.1
|
|
83
|
+
signing_key:
|
|
84
|
+
specification_version: 2
|
|
85
|
+
summary: The homeschool gem
|
|
86
|
+
test_files: []
|
|
87
|
+
|