simple-navigation 3.4.1 → 3.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG +4 -0
  2. data/Gemfile +14 -4
  3. data/Rakefile +0 -2
  4. data/VERSION +1 -1
  5. metadata +16 -44
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *3.4.2
2
+
3
+ * Improve Gemfile dependencies with :development and :rails groups.
4
+
1
5
  *3.4.1
2
6
 
3
7
  * Rerelease using ruby-1.8.7 rather than ruby-1.9.2 in order that the rubygems.org gemspec is generated in a compatible fashion.
data/Gemfile CHANGED
@@ -1,5 +1,15 @@
1
1
  source :rubygems
2
- gem 'actionpack'
3
- gem 'rspec'
4
- gem 'rake'
5
- gem 'rdoc'
2
+
3
+ gem 'activesupport', '>= 2.3.2'
4
+
5
+ # install the rails group if you want to ensure rails compatibility -
6
+ # but you've already got rails installed anyway, right? :-)
7
+ group :rails do
8
+ gem 'actionpack', '>= 2.3.2'
9
+ end
10
+
11
+ group :development do
12
+ gem 'rspec', '>= 2.0.1'
13
+ gem 'rake'
14
+ gem 'rdoc'
15
+ end
data/Rakefile CHANGED
@@ -36,8 +36,6 @@ begin
36
36
  gemspec.email = "andreas.schacke@gmail.com"
37
37
  gemspec.homepage = "http://github.com/andi/simple-navigation"
38
38
  gemspec.description = "With the simple-navigation gem installed you can easily create multilevel navigations for your Rails, Sinatra or Padrino applications. The navigation is defined in a single configuration file. It supports automatic as well as explicit highlighting of the currently active navigation through regular expressions."
39
- gemspec.add_development_dependency('rspec', '>= 2.0.1')
40
- gemspec.add_dependency('activesupport', '>= 2.3.2')
41
39
  gemspec.authors = ["Andi Schacke", "Mark J. Titorenko"]
42
40
  gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"]
43
41
  gemspec.files = FileList["[A-Z]*", "{lib,spec,rails,generators}/**/*"] - FileList["**/*.log", "Gemfile.lock"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.4.1
1
+ 3.4.2
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-navigation
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 4
9
- - 1
10
- version: 3.4.1
9
+ - 2
10
+ version: 3.4.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andi Schacke
@@ -22,19 +22,21 @@ dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  type: :runtime
24
24
  prerelease: false
25
- name: actionpack
25
+ name: activesupport
26
26
  version_requirements: &id001 !ruby/object:Gem::Requirement
27
27
  none: false
28
28
  requirements:
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- hash: 3
31
+ hash: 7
32
32
  segments:
33
- - 0
34
- version: "0"
33
+ - 2
34
+ - 3
35
+ - 2
36
+ version: 2.3.2
35
37
  requirement: *id001
36
38
  - !ruby/object:Gem::Dependency
37
- type: :runtime
39
+ type: :development
38
40
  prerelease: false
39
41
  name: rspec
40
42
  version_requirements: &id002 !ruby/object:Gem::Requirement
@@ -42,13 +44,15 @@ dependencies:
42
44
  requirements:
43
45
  - - ">="
44
46
  - !ruby/object:Gem::Version
45
- hash: 3
47
+ hash: 13
46
48
  segments:
49
+ - 2
47
50
  - 0
48
- version: "0"
51
+ - 1
52
+ version: 2.0.1
49
53
  requirement: *id002
50
54
  - !ruby/object:Gem::Dependency
51
- type: :runtime
55
+ type: :development
52
56
  prerelease: false
53
57
  name: rake
54
58
  version_requirements: &id003 !ruby/object:Gem::Requirement
@@ -62,7 +66,7 @@ dependencies:
62
66
  version: "0"
63
67
  requirement: *id003
64
68
  - !ruby/object:Gem::Dependency
65
- type: :runtime
69
+ type: :development
66
70
  prerelease: false
67
71
  name: rdoc
68
72
  version_requirements: &id004 !ruby/object:Gem::Requirement
@@ -75,38 +79,6 @@ dependencies:
75
79
  - 0
76
80
  version: "0"
77
81
  requirement: *id004
78
- - !ruby/object:Gem::Dependency
79
- type: :development
80
- prerelease: false
81
- name: rspec
82
- version_requirements: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- hash: 13
88
- segments:
89
- - 2
90
- - 0
91
- - 1
92
- version: 2.0.1
93
- requirement: *id005
94
- - !ruby/object:Gem::Dependency
95
- type: :runtime
96
- prerelease: false
97
- name: activesupport
98
- version_requirements: &id006 !ruby/object:Gem::Requirement
99
- none: false
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- hash: 7
104
- segments:
105
- - 2
106
- - 3
107
- - 2
108
- version: 2.3.2
109
- requirement: *id006
110
82
  description: With the simple-navigation gem installed you can easily create multilevel navigations for your Rails, Sinatra or Padrino applications. The navigation is defined in a single configuration file. It supports automatic as well as explicit highlighting of the currently active navigation through regular expressions.
111
83
  email: andreas.schacke@gmail.com
112
84
  executables: []