sinatra-simple-navigation 3.0.2 → 3.1.0

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.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/Rakefile +5 -5
  3. data/VERSION +1 -1
  4. metadata +5 -5
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *3.1.0
2
+
3
+ * depends on new simple-navigation 3.1.0
4
+
1
5
  *3.0.2
2
6
 
3
7
  * depends on new simple-navigation 3.0.2
data/Rakefile CHANGED
@@ -1,14 +1,14 @@
1
1
  require 'rake'
2
- require 'spec/rake/spectask'
2
+ require 'rspec/core/rake_task'
3
3
  require 'rake/rdoctask'
4
4
 
5
5
  desc 'Default: run specs.'
6
6
  task :default => :spec
7
7
 
8
8
  desc 'Run the specs'
9
- Spec::Rake::SpecTask.new(:spec) do |t|
10
- t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
11
- t.spec_files = FileList['spec/**/*_spec.rb']
9
+ RSpec::Core::RakeTask.new(:spec) do |t|
10
+ t.rspec_opts = ['--colour --format progress --loadby mtime --reverse']
11
+ t.pattern = FileList['spec/**/*_spec.rb']
12
12
  end
13
13
 
14
14
  begin
@@ -20,7 +20,7 @@ begin
20
20
  gemspec.homepage = "http://github.com/andi/sinatra-simple-navigation"
21
21
  gemspec.description = "A Sinatra extension to enable creating navigations with the simple-navigation gem. Also works for Padrino. See http://github.com/andi/simple-navigation for more information on simple-navigation."
22
22
  #gemspec.add_development_dependency('rspec', '>= 1.2.8')
23
- gemspec.add_dependency('simple-navigation', '>= 3.0.2')
23
+ gemspec.add_dependency('simple-navigation', '>= 3.1.0')
24
24
  gemspec.authors = ["Andi Schacke"]
25
25
  gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"]
26
26
  gemspec.files = FileList["[A-Z]*", "{lib,spec}/**/*"] - FileList["**/*.log"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.2
1
+ 3.1.0
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
+ - 1
8
9
  - 0
9
- - 2
10
- version: 3.0.2
10
+ version: 3.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andi Schacke
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-01 00:00:00 +01:00
18
+ date: 2010-12-27 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -29,9 +29,9 @@ dependencies:
29
29
  hash: 3
30
30
  segments:
31
31
  - 3
32
+ - 1
32
33
  - 0
33
- - 2
34
- version: 3.0.2
34
+ version: 3.1.0
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  description: A Sinatra extension to enable creating navigations with the simple-navigation gem. Also works for Padrino. See http://github.com/andi/simple-navigation for more information on simple-navigation.