alacarte 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,4 @@ pkg/*
2
2
  *.gem
3
3
  .bundle
4
4
  .DS_Store
5
+ doc/*
data/CHANGES CHANGED
@@ -1,5 +1,10 @@
1
1
  = Change Log
2
2
 
3
+ == Version 0.0.3
4
+
5
+ * Typo fix in README "Output example"
6
+ * Typo fixes by i76; https://github.com/i76
7
+
3
8
  == Version 0.0.2
4
9
 
5
10
  * Removed some Rails specific routines and replaced them with custom routines
data/README.textile CHANGED
@@ -1,13 +1,13 @@
1
1
  h1. Alacarte
2
2
 
3
- Alacarte allows you to setup menu's and conditions in your Rails app in a router-like DSL way.
3
+ Alacarte allows you to setup menus and conditions in your Rails app in a router-like DSL way.
4
4
 
5
5
  You can easily;
6
6
 
7
- * group menu's by name
7
+ * group menus by name
8
8
  * set conditions on menu items as a group
9
9
  * set conditions on menu items with @:if@ and @:unless@
10
- * nest your menu's
10
+ * nest your menus
11
11
 
12
12
  h2. Installation
13
13
 
@@ -37,7 +37,7 @@ h2. How it works
37
37
 
38
38
  h3. Helper environment
39
39
 
40
- Alacarte is linked to your helper environment, therefor you can call any helper method that is available to your rails app within your menu definition file;
40
+ Alacarte is linked to your helper environment, therefore you can call any helper method that is available to your rails app within your menu definition file;
41
41
 
42
42
  * format helpers
43
43
  * url_for, generated paths based on your routes file, ...
@@ -99,6 +99,6 @@ The output is generated as a ul-li list with anchor elements. If there is an ele
99
99
  <pre>
100
100
  <ul>
101
101
  <li><a href="/" class="nl active">nl</a></li>
102
- <li><a href="/" class="nl">fr</a></li>
102
+ <li><a href="/" class="fr">fr</a></li>
103
103
  </ul>
104
104
  </pre>
@@ -1,3 +1,3 @@
1
1
  module Alacarte
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alacarte
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
4
+ hash: 25
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stijn Mathysen
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-20 00:00:00 +01:00
18
+ date: 2011-01-05 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  requirements: []
78
78
 
79
79
  rubyforge_project: alacarte
80
- rubygems_version: 1.3.7
80
+ rubygems_version: 1.4.1
81
81
  signing_key:
82
82
  specification_version: 3
83
83
  summary: Provides a generic menu system for Rails