sga_nav 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +105 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/lib/nav/navigation.rb +52 -0
- data/lib/sga_nav.rb +3 -0
- data/sga_nav.gemspec +52 -0
- data/test/helper.rb +10 -0
- data/test/test_sga_nav.rb +7 -0
- metadata +74 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 tim.teng
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
= sga_nav
|
2
|
+
|
3
|
+
== Usage
|
4
|
+
|
5
|
+
to build a navigation li :
|
6
|
+
|
7
|
+
<div class="nav">
|
8
|
+
<ul>
|
9
|
+
<% main_nav :user, :class => "first" do %> <%= link_to 'Users', users_path %> <% end %>
|
10
|
+
<% main_nav :scene do %> <%= link_to 'Scenes', scenes_path %> <% end %>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
to build a sub nav:
|
15
|
+
|
16
|
+
<div class="secondary-navigation">
|
17
|
+
<ul>
|
18
|
+
<% sec_nav :new, :class => "first" do %><%= link_to "tasks", user_tasks_path(current_user) %><% end %>
|
19
|
+
<% sec_nav :strategy do %><%= link_to "messages", user_messages_path(current_user) %><% end %>
|
20
|
+
</ul>
|
21
|
+
<div class="clear"></div>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
when user view pages correspoding to actions in users controller, we'd like the tab "User" highlight, to accomplish this:
|
25
|
+
|
26
|
+
class UsersController < ApplicationController
|
27
|
+
|
28
|
+
main_nav_highlight :users
|
29
|
+
|
30
|
+
# bla bla bla ...
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
also if you need to highlight the sub nav, call "sec_nav_highlight :something" in your controller
|
35
|
+
|
36
|
+
== Code
|
37
|
+
|
38
|
+
module Navigation
|
39
|
+
|
40
|
+
module ControllerExtensions
|
41
|
+
|
42
|
+
module ClassMethods
|
43
|
+
|
44
|
+
def sec_nav_highlight(name)
|
45
|
+
class_eval do
|
46
|
+
before_filter { |c| c.instance_variable_set(:@sec_nav, name) }
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def main_nav_highlight(name)
|
51
|
+
class_eval do
|
52
|
+
before_filter { |c| c.instance_variable_set(:@main_nav, name) }
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
|
60
|
+
module RailsHelpers
|
61
|
+
|
62
|
+
def sec_nav(name, options = {}, &block)
|
63
|
+
if @sec_nav == name
|
64
|
+
if options[:class]
|
65
|
+
options[:class] += " active"
|
66
|
+
else
|
67
|
+
options[:class] = "active"
|
68
|
+
end
|
69
|
+
end
|
70
|
+
content = capture(&block)
|
71
|
+
concat content_tag(:li, content, options)
|
72
|
+
end
|
73
|
+
|
74
|
+
def main_nav(name, options = {}, &block)
|
75
|
+
if @main_nav == name
|
76
|
+
if options[:class]
|
77
|
+
options[:class] += " active"
|
78
|
+
else
|
79
|
+
options[:class] = "active"
|
80
|
+
end
|
81
|
+
end
|
82
|
+
content = capture(&block)
|
83
|
+
concat content_tag(:li, content, options)
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
ActionController::Base.send :extend, Navigation::ControllerExtensions::ClassMethods
|
91
|
+
ActionController::Base.send :helper, Navigation::RailsHelpers
|
92
|
+
|
93
|
+
== Note on Patches/Pull Requests
|
94
|
+
|
95
|
+
* Fork the project.
|
96
|
+
* Make your feature addition or bug fix.
|
97
|
+
* Add tests for it. This is important so I don't break it in a
|
98
|
+
future version unintentionally.
|
99
|
+
* Commit, do not mess with rakefile, version, or history.
|
100
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
101
|
+
* Send me a pull request. Bonus points for topic branches.
|
102
|
+
|
103
|
+
== Copyright
|
104
|
+
|
105
|
+
Copyright (c) 2010 tim.teng. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "sga_nav"
|
8
|
+
gem.summary = %Q{simple navigation tabs for sga innternal project}
|
9
|
+
gem.description = %Q{a simple implemention for navigation}
|
10
|
+
gem.email = "tim.rubist@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/tteng/sga_nav"
|
12
|
+
gem.authors = ["tim.teng"]
|
13
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
14
|
+
end
|
15
|
+
Jeweler::GemcutterTasks.new
|
16
|
+
rescue LoadError
|
17
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
18
|
+
end
|
19
|
+
|
20
|
+
require 'rake/testtask'
|
21
|
+
Rake::TestTask.new(:test) do |test|
|
22
|
+
test.libs << 'lib' << 'test'
|
23
|
+
test.pattern = 'test/**/test_*.rb'
|
24
|
+
test.verbose = true
|
25
|
+
end
|
26
|
+
|
27
|
+
begin
|
28
|
+
require 'rcov/rcovtask'
|
29
|
+
Rcov::RcovTask.new do |test|
|
30
|
+
test.libs << 'test'
|
31
|
+
test.pattern = 'test/**/test_*.rb'
|
32
|
+
test.verbose = true
|
33
|
+
end
|
34
|
+
rescue LoadError
|
35
|
+
task :rcov do
|
36
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
task :test => :check_dependencies
|
41
|
+
|
42
|
+
task :default => :test
|
43
|
+
|
44
|
+
require 'rake/rdoctask'
|
45
|
+
Rake::RDocTask.new do |rdoc|
|
46
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
47
|
+
|
48
|
+
rdoc.rdoc_dir = 'rdoc'
|
49
|
+
rdoc.title = "sga_nav #{version}"
|
50
|
+
rdoc.rdoc_files.include('README*')
|
51
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
52
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
@@ -0,0 +1,52 @@
|
|
1
|
+
module Navigation
|
2
|
+
|
3
|
+
module ControllerExtensions
|
4
|
+
|
5
|
+
module ClassMethods
|
6
|
+
|
7
|
+
def sec_nav_highlight(name)
|
8
|
+
class_eval do
|
9
|
+
before_filter { |c| c.instance_variable_set(:@sec_nav, name) }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def main_nav_highlight(name)
|
14
|
+
class_eval do
|
15
|
+
before_filter { |c| c.instance_variable_set(:@main_nav, name) }
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
module RailsHelpers
|
24
|
+
|
25
|
+
def sec_nav(name, options = {}, &block)
|
26
|
+
if @sec_nav == name
|
27
|
+
if options[:class]
|
28
|
+
options[:class] += " active"
|
29
|
+
else
|
30
|
+
options[:class] = "active"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
content = capture(&block)
|
34
|
+
concat content_tag(:li, content, options)
|
35
|
+
end
|
36
|
+
|
37
|
+
def main_nav(name, options = {}, &block)
|
38
|
+
if @main_nav == name
|
39
|
+
if options[:class]
|
40
|
+
options[:class] += " active"
|
41
|
+
else
|
42
|
+
options[:class] = "active"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
content = capture(&block)
|
46
|
+
concat content_tag(:li, content, options)
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
data/lib/sga_nav.rb
ADDED
data/sga_nav.gemspec
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{sga_nav}
|
8
|
+
s.version = "0.1.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["tim.teng"]
|
12
|
+
s.date = %q{2010-03-26}
|
13
|
+
s.description = %q{a simple implemention for navigation}
|
14
|
+
s.email = %q{tim.rubist@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/nav/navigation.rb",
|
27
|
+
"lib/sga_nav.rb",
|
28
|
+
"sga_nav.gemspec",
|
29
|
+
"test/helper.rb",
|
30
|
+
"test/test_sga_nav.rb"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/tteng/sga_nav}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.6}
|
36
|
+
s.summary = %q{simple navigation tabs for sga innternal project}
|
37
|
+
s.test_files = [
|
38
|
+
"test/test_sga_nav.rb",
|
39
|
+
"test/helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
else
|
48
|
+
end
|
49
|
+
else
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sga_nav
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- tim.teng
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-03-26 00:00:00 +08:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: a simple implemention for navigation
|
22
|
+
email: tim.rubist@gmail.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- LICENSE
|
29
|
+
- README.rdoc
|
30
|
+
files:
|
31
|
+
- .document
|
32
|
+
- .gitignore
|
33
|
+
- LICENSE
|
34
|
+
- README.rdoc
|
35
|
+
- Rakefile
|
36
|
+
- VERSION
|
37
|
+
- lib/nav/navigation.rb
|
38
|
+
- lib/sga_nav.rb
|
39
|
+
- sga_nav.gemspec
|
40
|
+
- test/helper.rb
|
41
|
+
- test/test_sga_nav.rb
|
42
|
+
has_rdoc: true
|
43
|
+
homepage: http://github.com/tteng/sga_nav
|
44
|
+
licenses: []
|
45
|
+
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options:
|
48
|
+
- --charset=UTF-8
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
segments:
|
56
|
+
- 0
|
57
|
+
version: "0"
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
version: "0"
|
65
|
+
requirements: []
|
66
|
+
|
67
|
+
rubyforge_project:
|
68
|
+
rubygems_version: 1.3.6
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: simple navigation tabs for sga innternal project
|
72
|
+
test_files:
|
73
|
+
- test/test_sga_nav.rb
|
74
|
+
- test/helper.rb
|