navGATE 0.1.3 → 0.1.3.1

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 (5) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/lib/navgate.rb +1 -1
  4. data/navGATE.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59977b3ab573742eb987ce65278371830d789160
4
- data.tar.gz: 3c83c46c05eab888fde22374e69351e8fba46856
3
+ metadata.gz: 801efb19de9205c606cd1cf8365b84d915d72f6c
4
+ data.tar.gz: d4b15567af621a29ec1a00082ebc63abef16d124
5
5
  SHA512:
6
- metadata.gz: 434d8ce1e1e9a9056953e7be6a1223a39c4e77ef4177d61d167c6b5237b00564601e1f1aa4be91d4aaaf5862984b3cdd4df2493c057f65e2b78dc27469b98dd2
7
- data.tar.gz: 45887e3956cdf64928c4cca64525cfa021a7a7fb30a607c368933fb557127a3e88a573b0cbaf50c0fa199e1bf948f5fdc722a19b291be591b5cc33c60a24a69f
6
+ metadata.gz: 665dee87202916fe6fd9fa82a425360ee67364c8dc0b43aebd58d7273fd10dc68fe6f0a185a10ae8e13e41569546bf2a8141640199c004196f7a67ee2585caf8
7
+ data.tar.gz: 0d2edba55083f9cb22eaa9862c8d9d4221ba02312477bf445accb03cab45c1d337d13a461f3591ae6dca64b79f45768c43405f81ff06aa160ac155a78a32a188
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'rake'
3
3
  require 'echoe'
4
4
 
5
5
 
6
- Echoe.new('navGATE','0.1.3') do |p|
6
+ Echoe.new('navGATE','0.1.3.1') do |p|
7
7
  p.summary = "Allows the easy creation of navigation with config files"
8
8
  p.description = "Can create navigation from objects using the nav builder,from database tables or from a yaml file"
9
9
  p.url = "https://github.com/Thermatix/navGATE"
data/lib/navgate.rb CHANGED
@@ -10,7 +10,7 @@ module NavGate
10
10
  end
11
11
 
12
12
  def self.configure
13
- self.configuration ||= Congiruration.new
13
+ self.configuration ||= Configuration.new
14
14
  yield(configuration)
15
15
  self.configuration.post_setup
16
16
  end
data/navGATE.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "navGATE"
5
- s.version = "0.1.3"
5
+ s.version = "0.1.3.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Martin Becker"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: navGATE
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Becker