kitsune 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rake'
2
2
 
3
3
  gem_spec = Gem::Specification.new do |gem_spec|
4
4
  gem_spec.name = "kitsune"
5
- gem_spec.version = "0.0.9"
5
+ gem_spec.version = "0.0.10"
6
6
  gem_spec.summary = "Integrated Rails Content Management System."
7
7
  gem_spec.email = "matt@toastyapps.com"
8
8
  gem_spec.homepage = "http://github.com/toastyapps/kitsune"
@@ -1,5 +1,6 @@
1
1
  class KitsuneController < ApplicationController
2
2
  def show
3
3
  @page = ::Page.find_by_url([params[:url]].flatten.join('/'))
4
+ @title = @page.title
4
5
  end
5
- end
6
+ end
@@ -8,7 +8,7 @@ module Kitsune
8
8
  autoload :Page, 'kitsune/page'
9
9
  class << self
10
10
  def version
11
- '0.0.9'
11
+ '0.0.10'
12
12
  end
13
13
 
14
14
  def model_paths # abstract this to something else
@@ -42,4 +42,4 @@ module Kitsune
42
42
  models
43
43
  end
44
44
  end
45
- end
45
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitsune
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Mongeau <matt@toastyapps.com>