kitsune 0.0.11 → 0.0.12

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.
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.11"
5
+ gem_spec.version = "0.0.12"
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"
@@ -15,7 +15,7 @@
15
15
  </div>
16
16
  <% end %>
17
17
  <div class="submit_button">
18
- <button value="Save" class="submitBtn"><span>Save</span></button>
18
+ <button value="Save" type='submit' class="submitBtn"><span>Save</span></button>
19
19
  </div>
20
20
  </fieldset>
21
21
  <% end %>
@@ -2,6 +2,9 @@
2
2
  <head>
3
3
  <title>Kitsune CMS</title>
4
4
  <%= stylesheet_link_tag 'kitsune/global.css' %>
5
+ <!--[if IE]>
6
+ <%= stylesheet_link_tag 'kitsune/ie.css' %>
7
+ <![endif]-->
5
8
  <%= javascript_include_tag 'kitsune/nicEdit.js' %>
6
9
  </head>
7
10
  <body>
@@ -15,6 +15,7 @@ class KitsuneGenerator < Rails::Generator::Base
15
15
  m.file "javascripts/nicEdit.js", "public/javascripts/kitsune/nicEdit.js"
16
16
  m.directory "public/stylesheets/kitsune/"
17
17
  m.file "stylesheets/global.css", "public/stylesheets/kitsune/global.css"
18
+ m.file "stylesheets/ie.css", "public/stylesheets/kitsune/ie.css"
18
19
  m.directory "public/images/kitsune/"
19
20
  %w[bg.jpg form-bg.gif header-link.png grey-btn.png nicEditorIcons.gif].each do |image|
20
21
  m.file "images/#{image}", "public/images/kitsune/#{image}"
@@ -0,0 +1,3 @@
1
+ .kitsune_right {
2
+ float: right;
3
+ }
@@ -8,7 +8,7 @@ module Kitsune
8
8
  autoload :Page, 'kitsune/page'
9
9
  class << self
10
10
  def version
11
- '0.0.11'
11
+ '0.0.12'
12
12
  end
13
13
 
14
14
  def model_paths # abstract this to something else
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.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Mongeau <matt@toastyapps.com>
@@ -66,6 +66,7 @@ files:
66
66
  - generators/kitsune/templates/page.rb
67
67
  - generators/kitsune/templates/README
68
68
  - generators/kitsune/templates/stylesheets/global.css
69
+ - generators/kitsune/templates/stylesheets/ie.css
69
70
  - generators/kitsune/USAGE
70
71
  - generators/kitsune_flat_files/kitsune_flat_files_generator.rb
71
72
  - generators/kitsune_flat_files/templates/index.html.erb