Skip to content

Commit

Permalink
preparing for 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjtko committed Aug 5, 2011
1 parent 747a568 commit 250213e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
*3.4.0

* depends on simple-navigation 3.4.0

*3.3.5 *3.3.5


* depends on simple-navigation 3.3.4 * depends on simple-navigation 3.3.4
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -19,7 +19,7 @@ begin
gemspec.homepage = "http://github.com/andi/sinatra-simple-navigation" gemspec.homepage = "http://github.com/andi/sinatra-simple-navigation"
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." 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."
#gemspec.add_development_dependency('rspec', '>= 1.2.8') #gemspec.add_development_dependency('rspec', '>= 1.2.8')
gemspec.add_dependency('simple-navigation', '>= 3.3.4') gemspec.add_dependency('simple-navigation', '>= 3.4.0')
gemspec.authors = ["Andi Schacke", "Mark J. Titorenko"] gemspec.authors = ["Andi Schacke", "Mark J. Titorenko"]
gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"] gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"]
gemspec.files = FileList["[A-Z]*", "{lib,spec}/**/*"] - FileList["**/*.log"] gemspec.files = FileList["[A-Z]*", "{lib,spec}/**/*"] - FileList["**/*.log"]
Expand Down
12 changes: 6 additions & 6 deletions sinatra-simple-navigation.gemspec
Expand Up @@ -5,11 +5,11 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{sinatra-simple-navigation} s.name = %q{sinatra-simple-navigation}
s.version = "3.3.5" s.version = "3.4.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Andi Schacke}, %q{Mark J. Titorenko}] s.authors = [%q{Andi Schacke}, %q{Mark J. Titorenko}]
s.date = %q{2011-07-11} s.date = %q{2011-08-05}
s.description = %q{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.} s.description = %q{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.}
s.email = %q{andreas.schacke@gmail.com} s.email = %q{andreas.schacke@gmail.com}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
Expand All @@ -27,19 +27,19 @@ Gem::Specification.new do |s|
s.rdoc_options = [%q{--inline-source}, %q{--charset=UTF-8}] s.rdoc_options = [%q{--inline-source}, %q{--charset=UTF-8}]
s.require_paths = [%q{lib}] s.require_paths = [%q{lib}]
s.rubyforge_project = %q{andi} s.rubyforge_project = %q{andi}
s.rubygems_version = %q{1.8.5} s.rubygems_version = %q{1.8.6}
s.summary = %q{A Sinatra extension to enable creating navigations with the simple-navigation gem. Also works for Padrino.} s.summary = %q{A Sinatra extension to enable creating navigations with the simple-navigation gem. Also works for Padrino.}


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<simple-navigation>, [">= 3.3.4"]) s.add_runtime_dependency(%q<simple-navigation>, [">= 3.4.0"])
else else
s.add_dependency(%q<simple-navigation>, [">= 3.3.4"]) s.add_dependency(%q<simple-navigation>, [">= 3.4.0"])
end end
else else
s.add_dependency(%q<simple-navigation>, [">= 3.3.4"]) s.add_dependency(%q<simple-navigation>, [">= 3.4.0"])
end end
end end


0 comments on commit 250213e

Please sign in to comment.