cartoonist-default-theme 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *~
2
+ /cartoonist-default-theme-*.gem
@@ -0,0 +1,7 @@
1
+ /* Standard www theming */
2
+ html.www {
3
+ }
4
+
5
+ /* Mobile theming */
6
+ html.m {
7
+ }
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "cartoonist-default-theme"
3
+ s.version = "0.0.3"
4
+ s.date = "2012-04-06"
5
+ s.summary = "Cartoonist Default Theme"
6
+ s.description = "A plugin gem to provide the default theme for a Cartoonist website"
7
+ s.authors = ["Mike Virata-Stone"]
8
+ s.email = "reasonnumber@gmail.com"
9
+ s.files = `git ls-files`.split("\n")
10
+ s.require_paths = ["lib"]
11
+ s.homepage = "http://reasonnumber.com/cartoonist"
12
+ end
@@ -0,0 +1,10 @@
1
+ module CartoonistDefaultTheme
2
+ CSS = "cartoonist-default-theme.css"
3
+ FAVICON = "cartoonist-default-theme/favicon.ico"
4
+ LOGO = "cartoonist-default-theme/logo.png"
5
+
6
+ class Engine < ::Rails::Engine
7
+ CartoonistThemes.add :cartoonist_default_theme, :css => CSS, :favicon => FAVICON, :rss_logo => LOGO
8
+ CartoonistThemes.add_assets CSS, "images/#{FAVICON}", "images/#{LOGO}"
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module CartoonistDefaultTheme
2
+ require "cartoonist-default-theme/engine"
3
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cartoonist-default-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mike Virata-Stone
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-06 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: A plugin gem to provide the default theme for a Cartoonist website
15
+ email: reasonnumber@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - .gitignore
21
+ - app/assets/images/cartoonist-default-theme/favicon.ico
22
+ - app/assets/images/cartoonist-default-theme/logo.png
23
+ - app/assets/stylesheets/cartoonist-default-theme.css.scss
24
+ - cartoonist-default-theme.gemspec
25
+ - lib/cartoonist-default-theme.rb
26
+ - lib/cartoonist-default-theme/engine.rb
27
+ homepage: http://reasonnumber.com/cartoonist
28
+ licenses: []
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.17
48
+ signing_key:
49
+ specification_version: 3
50
+ summary: Cartoonist Default Theme
51
+ test_files: []