jquery_ui_rails_helpers 0.0.2 → 0.0.3
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/CHANGELOG +12 -8
- data/Gemfile +0 -1
- data/Gemfile.lock +39 -39
- data/README.textile +14 -14
- data/Rakefile +4 -4
- data/jquery_ui_rails_helpers.gemspec +16 -18
- data/lib/helpers/accordions_helper.rb +30 -30
- data/lib/helpers/javascripts_helper.rb +6 -6
- data/lib/helpers/tabs_helper.rb +41 -41
- data/lib/jquery_ui_rails_helpers/version.rb +1 -1
- data/test/test_helper.rb +7 -7
- data/test/unit/helper/accordions_helper_test.rb +7 -7
- data/test/unit/helper/tabs_helper_test.rb +10 -11
- metadata +6 -49
data/CHANGELOG
CHANGED
@@ -1,16 +1,20 @@
|
|
1
|
+
== 01-24-2011
|
2
|
+
|
3
|
+
* rewrote for rails 3 && (ruby 1.8 || ruby 1.9), added tests
|
4
|
+
|
1
5
|
== 03-07-2009
|
2
6
|
|
3
|
-
|
4
|
-
|
7
|
+
* big change: removed the 2nd param for concat, rails no longer requires the binding be passed.
|
8
|
+
* added a helper for creating accordions
|
5
9
|
|
6
10
|
== 09-04-2008
|
7
11
|
|
8
|
-
|
12
|
+
* big change: renamed classes, and helper 'tabs_for' now requires a block
|
9
13
|
|
10
|
-
== 08-28-2008
|
11
|
-
|
12
|
-
|
14
|
+
== 08-28-2008
|
15
|
+
|
16
|
+
* added the ability to call TabsRenderer.new with a block parameter
|
13
17
|
|
14
18
|
== 06-22-2008 initial import
|
15
|
-
|
16
|
-
|
19
|
+
|
20
|
+
* TabsRenderer added
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,83 +1,83 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jquery_ui_rails_helpers (0.0.
|
5
|
-
rails (~> 3.0.0)
|
6
|
-
shoulda (~> 3.0.0.beta2)
|
4
|
+
jquery_ui_rails_helpers (0.0.2)
|
7
5
|
|
8
6
|
GEM
|
9
7
|
remote: http://rubygems.org/
|
10
8
|
specs:
|
11
9
|
abstract (1.0.0)
|
12
|
-
actionmailer (3.0.
|
13
|
-
actionpack (= 3.0.
|
14
|
-
mail (~> 2.2.
|
15
|
-
actionpack (3.0.
|
16
|
-
activemodel (= 3.0.
|
17
|
-
activesupport (= 3.0.
|
10
|
+
actionmailer (3.0.7)
|
11
|
+
actionpack (= 3.0.7)
|
12
|
+
mail (~> 2.2.15)
|
13
|
+
actionpack (3.0.7)
|
14
|
+
activemodel (= 3.0.7)
|
15
|
+
activesupport (= 3.0.7)
|
18
16
|
builder (~> 2.1.2)
|
19
17
|
erubis (~> 2.6.6)
|
20
|
-
i18n (~> 0.
|
18
|
+
i18n (~> 0.5.0)
|
21
19
|
rack (~> 1.2.1)
|
22
|
-
rack-mount (~> 0.6.
|
23
|
-
rack-test (~> 0.5.
|
20
|
+
rack-mount (~> 0.6.14)
|
21
|
+
rack-test (~> 0.5.7)
|
24
22
|
tzinfo (~> 0.3.23)
|
25
|
-
activemodel (3.0.
|
26
|
-
activesupport (= 3.0.
|
23
|
+
activemodel (3.0.7)
|
24
|
+
activesupport (= 3.0.7)
|
27
25
|
builder (~> 2.1.2)
|
28
|
-
i18n (~> 0.
|
29
|
-
activerecord (3.0.
|
30
|
-
activemodel (= 3.0.
|
31
|
-
activesupport (= 3.0.
|
26
|
+
i18n (~> 0.5.0)
|
27
|
+
activerecord (3.0.7)
|
28
|
+
activemodel (= 3.0.7)
|
29
|
+
activesupport (= 3.0.7)
|
32
30
|
arel (~> 2.0.2)
|
33
31
|
tzinfo (~> 0.3.23)
|
34
|
-
activeresource (3.0.
|
35
|
-
activemodel (= 3.0.
|
36
|
-
activesupport (= 3.0.
|
37
|
-
activesupport (3.0.
|
38
|
-
arel (2.0.
|
32
|
+
activeresource (3.0.7)
|
33
|
+
activemodel (= 3.0.7)
|
34
|
+
activesupport (= 3.0.7)
|
35
|
+
activesupport (3.0.7)
|
36
|
+
arel (2.0.10)
|
39
37
|
builder (2.1.2)
|
40
38
|
erubis (2.6.6)
|
41
39
|
abstract (>= 1.0.0)
|
42
40
|
i18n (0.5.0)
|
43
|
-
mail (2.2.
|
41
|
+
mail (2.2.19)
|
44
42
|
activesupport (>= 2.3.6)
|
45
43
|
i18n (>= 0.4.0)
|
46
44
|
mime-types (~> 1.16)
|
47
45
|
treetop (~> 1.4.8)
|
48
46
|
mime-types (1.16)
|
49
47
|
polyglot (0.3.1)
|
50
|
-
rack (1.2.
|
51
|
-
rack-mount (0.6.
|
48
|
+
rack (1.2.2)
|
49
|
+
rack-mount (0.6.14)
|
52
50
|
rack (>= 1.0.0)
|
53
51
|
rack-test (0.5.7)
|
54
52
|
rack (>= 1.0)
|
55
|
-
rails (3.0.
|
56
|
-
actionmailer (= 3.0.
|
57
|
-
actionpack (= 3.0.
|
58
|
-
activerecord (= 3.0.
|
59
|
-
activeresource (= 3.0.
|
60
|
-
activesupport (= 3.0.
|
53
|
+
rails (3.0.7)
|
54
|
+
actionmailer (= 3.0.7)
|
55
|
+
actionpack (= 3.0.7)
|
56
|
+
activerecord (= 3.0.7)
|
57
|
+
activeresource (= 3.0.7)
|
58
|
+
activesupport (= 3.0.7)
|
61
59
|
bundler (~> 1.0)
|
62
|
-
railties (= 3.0.
|
63
|
-
railties (3.0.
|
64
|
-
actionpack (= 3.0.
|
65
|
-
activesupport (= 3.0.
|
60
|
+
railties (= 3.0.7)
|
61
|
+
railties (3.0.7)
|
62
|
+
actionpack (= 3.0.7)
|
63
|
+
activesupport (= 3.0.7)
|
66
64
|
rake (>= 0.8.7)
|
67
65
|
thor (~> 0.14.4)
|
68
|
-
rake (0.
|
66
|
+
rake (0.9.0)
|
69
67
|
shoulda (3.0.0.beta2)
|
70
68
|
shoulda-context (~> 1.0.0.beta1)
|
71
69
|
shoulda-matchers (~> 1.0.0.beta1)
|
72
70
|
shoulda-context (1.0.0.beta1)
|
73
|
-
shoulda-matchers (1.0.0.
|
71
|
+
shoulda-matchers (1.0.0.beta2)
|
74
72
|
thor (0.14.6)
|
75
73
|
treetop (1.4.9)
|
76
74
|
polyglot (>= 0.3.1)
|
77
|
-
tzinfo (0.3.
|
75
|
+
tzinfo (0.3.27)
|
78
76
|
|
79
77
|
PLATFORMS
|
80
78
|
ruby
|
81
79
|
|
82
80
|
DEPENDENCIES
|
83
81
|
jquery_ui_rails_helpers!
|
82
|
+
rails (>= 3.0.0)
|
83
|
+
shoulda (~> 3.0.0.beta2)
|
data/README.textile
CHANGED
@@ -11,10 +11,10 @@ This helper simplifies the code required to use the jQuery UI Tab plugin.
|
|
11
11
|
<pre><code>
|
12
12
|
<% tabs_for do |tab| %>
|
13
13
|
<% tab.create('tab_one', 'Tab 1') do %>
|
14
|
-
|
14
|
+
# ... insert tab contents
|
15
15
|
<% end %>
|
16
16
|
<% tab.create('tab_two', 'Tab 2') do %>
|
17
|
-
|
17
|
+
# ... insert tab contents
|
18
18
|
<% end %>
|
19
19
|
<% end %>
|
20
20
|
</code></pre>
|
@@ -23,19 +23,19 @@ The above will generate this HTML in your view:
|
|
23
23
|
|
24
24
|
<pre><code>
|
25
25
|
<div id="tabs">
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
26
|
+
<ul>
|
27
|
+
<li><a href="#tab_one"><span>Tab 1</span></a></li>
|
28
|
+
<li><a href="#tab_two"><span>Tab 2</span></a></li>
|
29
|
+
</ul>
|
30
|
+
<div id="tab_one">
|
31
|
+
# ... insert tab contents
|
32
|
+
</div>
|
33
|
+
<div id="tab_two">
|
34
|
+
# ... insert tab contents
|
35
|
+
</div>
|
36
36
|
</div>
|
37
37
|
</code></pre>
|
38
|
-
|
38
|
+
|
39
39
|
Tabs will be rendered in the order you create them.
|
40
40
|
|
41
41
|
You can easily render a tab conditionally by appending your condition to the end of
|
@@ -53,7 +53,7 @@ DIV as you like ...
|
|
53
53
|
<pre><code>
|
54
54
|
<% tabs_for(:class => 'zippy') do |tab| %>
|
55
55
|
<% tab.create('tab_one', 'Tab 1', :style => 'background: #FFF') do %>
|
56
|
-
|
56
|
+
# ... insert tab contents
|
57
57
|
<% end %>
|
58
58
|
<% end %>
|
59
59
|
</code></pre>
|
data/Rakefile
CHANGED
@@ -8,8 +8,8 @@ task :default => :test
|
|
8
8
|
|
9
9
|
desc 'Test the simple_form plugin.'
|
10
10
|
Rake::TestTask.new(:test) do |t|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
t.libs << 'lib'
|
12
|
+
t.libs << 'test'
|
13
|
+
t.pattern = 'test/**/*_test.rb'
|
14
|
+
t.verbose = true
|
15
15
|
end
|
@@ -1,27 +1,25 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
|
2
3
|
$:.push File.expand_path("../lib", __FILE__)
|
3
4
|
require "jquery_ui_rails_helpers/version"
|
4
5
|
|
5
6
|
Gem::Specification.new do |s|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
s.name = "jquery_ui_rails_helpers"
|
8
|
+
s.version = JqueryUiRailsHelpers::VERSION
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
s.summary = "jQuery UI Rails Helpers"
|
11
|
+
s.authors = ["CodeOfficer"]
|
12
|
+
s.email = ["codeofficer@gmail.com"]
|
13
|
+
s.homepage = "http://www.codeofficer.com/"
|
14
|
+
s.description = "jQuery UI Rails Helpers"
|
14
15
|
|
15
|
-
s.
|
16
|
-
s.
|
16
|
+
# s.add_development_dependency("rails")
|
17
|
+
# s.add_development_dependency("shoulda")
|
17
18
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
s.files = `git ls-files`.split("\n")
|
20
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
22
|
+
s.require_paths = ["lib"]
|
22
23
|
|
23
|
-
|
24
|
+
s.rubyforge_project = "jquery_ui_rails_helpers"
|
24
25
|
end
|
25
|
-
|
26
|
-
|
27
|
-
|
@@ -1,47 +1,47 @@
|
|
1
1
|
module AccordionsHelper
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
def accordions_for( *options, &block )
|
3
|
+
raise ArgumentError, "Missing block" unless block_given?
|
4
|
+
raw AccordionsHelper::AccordionsRenderer.new( *options, &block ).render
|
5
|
+
end
|
6
6
|
|
7
|
-
|
7
|
+
class AccordionsRenderer
|
8
8
|
|
9
|
-
|
10
|
-
|
9
|
+
def initialize( options={}, &block )
|
10
|
+
raise ArgumentError, "Missing block" unless block_given?
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
@template = eval( 'self', block.binding )
|
13
|
+
@options = options
|
14
|
+
@accordions = []
|
15
15
|
|
16
|
-
|
17
|
-
|
16
|
+
yield self
|
17
|
+
end
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
def create( accordion_id, accordion_text, options={}, &block )
|
20
|
+
raise "Block needed for AccordionsRenderer#CREATE" unless block_given?
|
21
|
+
@accordions << [ accordion_id, accordion_text, options, block ]
|
22
|
+
end
|
23
23
|
|
24
|
-
|
24
|
+
def render
|
25
25
|
content = @accordions.collect do |accordion|
|
26
26
|
accordion_head(accordion) << accordion_body(accordion)
|
27
27
|
end.join
|
28
|
-
|
29
|
-
|
28
|
+
content_tag( :div, raw(content), { :id => :accordions }.merge( @options ) )
|
29
|
+
end
|
30
30
|
|
31
|
-
private #
|
31
|
+
private # ---------------------------------------------------------------------------
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
def accordion_head(accordion)
|
34
|
+
content_tag :h3, link_to(accordion[1], '#'), :id => accordion[0]
|
35
|
+
end
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
37
|
+
def accordion_body(accordion)
|
38
|
+
content_tag( :div, &accordion[3] )
|
39
|
+
end
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
def method_missing( *args, &block )
|
42
|
+
@template.send( *args, &block )
|
43
|
+
end
|
44
44
|
|
45
|
-
|
45
|
+
end
|
46
46
|
end
|
47
47
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
module JavascriptsHelper
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
def stylesheet(*args)
|
4
|
+
content_for(:head) { stylesheet_link_tag(*args) }
|
5
|
+
end
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
def javascript(*args)
|
8
|
+
content_for(:head) { javascript_include_tag(*args) }
|
9
|
+
end
|
10
10
|
|
11
11
|
def field_id_for_js(f, attribute)
|
12
12
|
"#{f.object_name}[#{attribute.to_s.sub(/\?$/,"")}]".gsub(/\]\[|[^-a-zA-Z0-9:.]/, "_").sub(/_$/, "")
|
data/lib/helpers/tabs_helper.rb
CHANGED
@@ -2,64 +2,64 @@
|
|
2
2
|
# module JqueryUiRailsHelpers
|
3
3
|
|
4
4
|
module TabsHelper
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
def tabs_for( *options, &block )
|
6
|
+
raise ArgumentError, "Missing block" unless block_given?
|
7
|
+
raw TabsHelper::TabsRenderer.new( *options, &block ).render
|
8
|
+
end
|
9
9
|
|
10
|
-
|
10
|
+
class TabsRenderer
|
11
11
|
|
12
|
-
|
13
|
-
|
12
|
+
def initialize( options={}, &block )
|
13
|
+
raise ArgumentError, "Missing block" unless block_given?
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
@template = eval( 'self', block.binding )
|
16
|
+
@options = options
|
17
|
+
@tabs = []
|
18
18
|
|
19
|
-
|
20
|
-
|
19
|
+
yield self
|
20
|
+
end
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
def create( tab_id, tab_text, options={}, &block )
|
23
|
+
raise "Block needed for TabsRenderer#CREATE" unless block_given?
|
24
|
+
@tabs << [ tab_id, tab_text, options, block, {:ajax => false} ]
|
25
|
+
end
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
def create_ajax( link, tab_text, options={})
|
28
|
+
@tabs << [ link, tab_text, options, nil, {:ajax => true} ]
|
29
|
+
end
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
def render
|
32
|
+
content_tag( :div, raw([render_tabs, render_bodies].join), { :id => :tabs }.merge( @options ) )
|
33
|
+
end
|
34
34
|
|
35
|
-
|
35
|
+
private # ---------------------------------------------------------------------------
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
37
|
+
def render_tabs
|
38
|
+
content_tag :ul do
|
39
|
+
result = @tabs.collect do |tab|
|
40
40
|
if tab[4][:ajax]
|
41
|
-
|
41
|
+
content_tag( :li, link_to( content_tag( :span, raw(tab[1]) ), "#{tab[0]}" ) )
|
42
42
|
else
|
43
|
-
|
43
|
+
content_tag( :li, link_to( content_tag( :span, raw(tab[1]) ), "##{tab[0]}" ) )
|
44
44
|
end
|
45
|
-
|
45
|
+
end.join
|
46
46
|
raw(result)
|
47
|
-
|
48
|
-
|
47
|
+
end
|
48
|
+
end
|
49
49
|
|
50
|
-
|
51
|
-
|
50
|
+
def render_bodies
|
51
|
+
@tabs.collect do |tab|
|
52
52
|
if tab[4][:ajax]
|
53
|
-
|
53
|
+
# there are no divs for ajaxed tabs
|
54
54
|
else
|
55
|
-
|
55
|
+
content_tag( :div, tab[2].merge( :id => tab[0] ), & tab[3])
|
56
56
|
end
|
57
|
-
|
58
|
-
|
57
|
+
end.join.to_s
|
58
|
+
end
|
59
59
|
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
def method_missing( *args, &block )
|
61
|
+
@template.send( *args, &block )
|
62
|
+
end
|
63
63
|
|
64
|
-
|
64
|
+
end
|
65
65
|
end
|
data/test/test_helper.rb
CHANGED
@@ -22,13 +22,13 @@ class ActionView::TestCase
|
|
22
22
|
setup :shhhhhh_url_helpers
|
23
23
|
|
24
24
|
def shhhhhh_url_helpers
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
25
|
+
def @controller._routes
|
26
|
+
Module.new do
|
27
|
+
def self.url_helpers
|
28
|
+
Module.new
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
32
|
end
|
33
33
|
|
34
34
|
end
|
@@ -4,9 +4,9 @@ class AccordionsHelperTest < ActionView::TestCase
|
|
4
4
|
|
5
5
|
context "creating accordions without a block syntax" do
|
6
6
|
should 'raises an exception' do
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
assert_raise ArgumentError do
|
8
|
+
@accordions = accordions_for
|
9
|
+
end
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
@@ -32,8 +32,8 @@ class AccordionsHelperTest < ActionView::TestCase
|
|
32
32
|
end
|
33
33
|
|
34
34
|
# <div id="accordions">
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
35
|
+
# <h3 id="accordion_one"><a href="#">One</a></h3>
|
36
|
+
# <div>Accordion Two.</div>
|
37
|
+
# <h3 id="accordion_two"><a href="#">Two</a></h3>
|
38
|
+
# <div>Accordion One.</div>
|
39
39
|
# </div>
|
@@ -4,9 +4,9 @@ class TabsHelperTest < ActionView::TestCase
|
|
4
4
|
|
5
5
|
context "creating tabs without a block syntax" do
|
6
6
|
should 'raises an exception' do
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
assert_raise ArgumentError do
|
8
|
+
@tabs = tabs_for
|
9
|
+
end
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
@@ -16,7 +16,6 @@ class TabsHelperTest < ActionView::TestCase
|
|
16
16
|
tab.create('tab_one', 'One') { "Tab One." }
|
17
17
|
tab.create('tab_two', 'Two') { "Tab Two." }
|
18
18
|
end
|
19
|
-
puts @tabs
|
20
19
|
end
|
21
20
|
|
22
21
|
should 'have proper dom structure' do
|
@@ -51,11 +50,11 @@ class TabsHelperTest < ActionView::TestCase
|
|
51
50
|
end
|
52
51
|
|
53
52
|
# <div id="tabs">
|
54
|
-
#
|
55
|
-
#
|
56
|
-
#
|
57
|
-
#
|
58
|
-
#
|
59
|
-
#
|
60
|
-
#
|
53
|
+
# <ul>
|
54
|
+
# <li><a href="#tab_one"><span>One</span></a></li>
|
55
|
+
# <li><a href="#tab_two"><span>Two</span></a></li>
|
56
|
+
# <li><a href="http://www.codeofficer.com/"><span>Ajax</span></a></li>
|
57
|
+
# </ul>
|
58
|
+
# <div id="tab_one">Tab One.</div>
|
59
|
+
# <div id="tab_two">Tab Two.</div>
|
61
60
|
# </div>
|
metadata
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery_ui_rails_helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 2
|
10
|
-
version: 0.0.2
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.3
|
11
6
|
platform: ruby
|
12
7
|
authors:
|
13
8
|
- CodeOfficer
|
@@ -15,42 +10,10 @@ autorequire:
|
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
12
|
|
18
|
-
date: 2011-
|
13
|
+
date: 2011-09-30 00:00:00 -04:00
|
19
14
|
default_executable:
|
20
|
-
dependencies:
|
21
|
-
|
22
|
-
name: rails
|
23
|
-
prerelease: false
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
hash: 7
|
30
|
-
segments:
|
31
|
-
- 3
|
32
|
-
- 0
|
33
|
-
- 0
|
34
|
-
version: 3.0.0
|
35
|
-
type: :runtime
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: shoulda
|
39
|
-
prerelease: false
|
40
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
hash: -1848230022
|
46
|
-
segments:
|
47
|
-
- 3
|
48
|
-
- 0
|
49
|
-
- 0
|
50
|
-
- beta2
|
51
|
-
version: 3.0.0.beta2
|
52
|
-
type: :runtime
|
53
|
-
version_requirements: *id002
|
15
|
+
dependencies: []
|
16
|
+
|
54
17
|
description: jQuery UI Rails Helpers
|
55
18
|
email:
|
56
19
|
- codeofficer@gmail.com
|
@@ -90,23 +53,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
53
|
requirements:
|
91
54
|
- - ">="
|
92
55
|
- !ruby/object:Gem::Version
|
93
|
-
hash: 3
|
94
|
-
segments:
|
95
|
-
- 0
|
96
56
|
version: "0"
|
97
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
58
|
none: false
|
99
59
|
requirements:
|
100
60
|
- - ">="
|
101
61
|
- !ruby/object:Gem::Version
|
102
|
-
hash: 3
|
103
|
-
segments:
|
104
|
-
- 0
|
105
62
|
version: "0"
|
106
63
|
requirements: []
|
107
64
|
|
108
65
|
rubyforge_project: jquery_ui_rails_helpers
|
109
|
-
rubygems_version: 1.
|
66
|
+
rubygems_version: 1.5.0
|
110
67
|
signing_key:
|
111
68
|
specification_version: 3
|
112
69
|
summary: jQuery UI Rails Helpers
|