kitsune 0.0.11 → 0.0.12
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.
|
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,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}"
|
data/lib/kitsune.rb
CHANGED
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.
|
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
|