simple-navigation 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *2.2.2
2
+
3
+ * added lib/simple-navigation.rb to allow 'require simple-navigation' or 'config.gem "simple-navigation"'
4
+
1
5
  *2.2.1
2
6
 
3
7
  * Corrected URL to API-Doc on rubyforge in README
data/Rakefile CHANGED
@@ -40,7 +40,7 @@ begin
40
40
  gemspec.description = "With the simple-navigation gem installed you can easily create multilevel navigations for your Ruby on Rails applications. The navigation is defined in a single configuration file. It supports automatic as well as explicit highlighting of the currently active navigation."
41
41
  gemspec.authors = ["Andi Schacke"]
42
42
  gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"]
43
- gemspec.files += ["CHANGELOG"]
43
+ gemspec.files = FileList["[A-Z]*", "{lib,spec,rails,generators}/**/*"] - FileList["**/*.log"]
44
44
  gemspec.rubyforge_project = 'andi'
45
45
  end
46
46
  Jeweler::RubyforgeTasks.new do |rubyforge|
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 2
3
3
  :minor: 2
4
- :patch: 1
4
+ :patch: 2
@@ -0,0 +1 @@
1
+ require 'simple_navigation'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-navigation
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andi Schacke
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-17 00:00:00 +01:00
12
+ date: 2010-02-05 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -22,7 +22,6 @@ extensions: []
22
22
  extra_rdoc_files:
23
23
  - README
24
24
  files:
25
- - .gitignore
26
25
  - CHANGELOG
27
26
  - README
28
27
  - Rakefile
@@ -30,8 +29,7 @@ files:
30
29
  - generators/navigation_config/USAGE
31
30
  - generators/navigation_config/navigation_config_generator.rb
32
31
  - generators/navigation_config/templates/config/navigation.rb
33
- - init.rb
34
- - install.rb
32
+ - lib/simple-navigation.rb
35
33
  - lib/simple_navigation.rb
36
34
  - lib/simple_navigation/configuration.rb
37
35
  - lib/simple_navigation/controller_methods.rb
@@ -43,7 +41,6 @@ files:
43
41
  - lib/simple_navigation/renderer/base.rb
44
42
  - lib/simple_navigation/renderer/list.rb
45
43
  - rails/init.rb
46
- - simple-navigation.gemspec
47
44
  - spec/lib/simple_navigation/configuration_spec.rb
48
45
  - spec/lib/simple_navigation/controller_methods_spec.rb
49
46
  - spec/lib/simple_navigation/helpers_spec.rb
@@ -55,7 +52,6 @@ files:
55
52
  - spec/lib/simple_navigation/renderer/list_spec.rb
56
53
  - spec/lib/simple_navigation_spec.rb
57
54
  - spec/spec_helper.rb
58
- - uninstall.rb
59
55
  has_rdoc: true
60
56
  homepage: http://github.com/andi/simple-navigation
61
57
  licenses: []
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- .DS_Store
2
- rdoc
3
- pkg
4
- coverage
data/init.rb DELETED
@@ -1 +0,0 @@
1
- require File.dirname(__FILE__) + "/rails/init"
data/install.rb DELETED
@@ -1,5 +0,0 @@
1
- begin
2
- puts IO.read(File.join(File.dirname(__FILE__), 'README'))
3
- rescue Exception => e
4
- puts "The following error ocurred while installing the plugin: #{e.message}"
5
- end
@@ -1,84 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{simple-navigation}
8
- s.version = "2.2.1"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Andi Schacke"]
12
- s.date = %q{2010-01-17}
13
- s.description = %q{With the simple-navigation gem installed you can easily create multilevel navigations for your Ruby on Rails applications. The navigation is defined in a single configuration file. It supports automatic as well as explicit highlighting of the currently active navigation.}
14
- s.email = %q{andreas.schacke@gmail.com}
15
- s.extra_rdoc_files = [
16
- "README"
17
- ]
18
- s.files = [
19
- ".gitignore",
20
- "CHANGELOG",
21
- "CHANGELOG",
22
- "README",
23
- "Rakefile",
24
- "VERSION.yml",
25
- "generators/navigation_config/USAGE",
26
- "generators/navigation_config/navigation_config_generator.rb",
27
- "generators/navigation_config/templates/config/navigation.rb",
28
- "init.rb",
29
- "install.rb",
30
- "lib/simple_navigation.rb",
31
- "lib/simple_navigation/configuration.rb",
32
- "lib/simple_navigation/controller_methods.rb",
33
- "lib/simple_navigation/helpers.rb",
34
- "lib/simple_navigation/item.rb",
35
- "lib/simple_navigation/item_adapter.rb",
36
- "lib/simple_navigation/item_container.rb",
37
- "lib/simple_navigation/items_provider.rb",
38
- "lib/simple_navigation/renderer/base.rb",
39
- "lib/simple_navigation/renderer/list.rb",
40
- "rails/init.rb",
41
- "simple-navigation.gemspec",
42
- "spec/lib/simple_navigation/configuration_spec.rb",
43
- "spec/lib/simple_navigation/controller_methods_spec.rb",
44
- "spec/lib/simple_navigation/helpers_spec.rb",
45
- "spec/lib/simple_navigation/item_adapter_spec.rb",
46
- "spec/lib/simple_navigation/item_container_spec.rb",
47
- "spec/lib/simple_navigation/item_spec.rb",
48
- "spec/lib/simple_navigation/items_provider_spec.rb",
49
- "spec/lib/simple_navigation/renderer/base_spec.rb",
50
- "spec/lib/simple_navigation/renderer/list_spec.rb",
51
- "spec/lib/simple_navigation_spec.rb",
52
- "spec/spec_helper.rb",
53
- "uninstall.rb"
54
- ]
55
- s.homepage = %q{http://github.com/andi/simple-navigation}
56
- s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
57
- s.require_paths = ["lib"]
58
- s.rubyforge_project = %q{andi}
59
- s.rubygems_version = %q{1.3.5}
60
- s.summary = %q{Simple Navigation is a ruby library for creating navigations (with multiple levels) for your Ruby on Rails application.}
61
- s.test_files = [
62
- "spec/lib/simple_navigation/configuration_spec.rb",
63
- "spec/lib/simple_navigation/controller_methods_spec.rb",
64
- "spec/lib/simple_navigation/helpers_spec.rb",
65
- "spec/lib/simple_navigation/item_adapter_spec.rb",
66
- "spec/lib/simple_navigation/item_container_spec.rb",
67
- "spec/lib/simple_navigation/item_spec.rb",
68
- "spec/lib/simple_navigation/items_provider_spec.rb",
69
- "spec/lib/simple_navigation/renderer/base_spec.rb",
70
- "spec/lib/simple_navigation/renderer/list_spec.rb",
71
- "spec/lib/simple_navigation_spec.rb",
72
- "spec/spec_helper.rb"
73
- ]
74
-
75
- if s.respond_to? :specification_version then
76
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
77
- s.specification_version = 3
78
-
79
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
80
- else
81
- end
82
- else
83
- end
84
- end
data/uninstall.rb DELETED
@@ -1 +0,0 @@
1
- # Uninstall hook code here