themekit 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.8
1
+ 0.1.1
@@ -40,8 +40,8 @@ module ThemeKit
40
40
  html.gsub!(/\{%\s*menu main\s*%\}/, data[:main_nav]) # {% menu main %}
41
41
  html.gsub!(/\{%\s*menu account\s*%\}/, data[:user_nav]) # {% menu account %}
42
42
  html.gsub!(/\{\{\s*page.content\s*\}\}/, data[:page_content]) # {{ page.content }}
43
- html.gsub!(/\{\{\s*system_stylesheet_path\s*\}\}/, data[:system_stylesheet_path]) # {{ system_stylesheet_path }}
44
- html.gsub!(/\{\{\s*stylesheet_path\s*\}\}/, data[:stylesheet_path]) # {{ stylesheet_path }}
43
+ html.gsub!(/\{\{\s*system_stylesheet_tag\s*\}\}/, data[:system_stylesheet_tag]) # {{ system_stylesheet_tag }}
44
+ html.gsub!(/\{\{\s*stylesheet_tag\s*\}\}/, data[:stylesheet_tag]) # {{ stylesheet_tag }}
45
45
 
46
46
  # Notices
47
47
  html.gsub!(/\{%\s*if notice\s*%\}/, '')
Binary file
@@ -1,14 +1,57 @@
1
- spec = Gem::Specification.new do |s|
2
- s.name = "themekit"
3
- s.summary = "A tiny app that makes designing Yardstick Measure themes a whole lot more enjoyable."
4
- s.version = "0.1.0"
5
- s.author = "Yardstick Software"
6
- s.email = "kyle@yardsticksoftware.com"
7
- s.homepage = "https://github.com/yardstick/themekit/tree/master"
8
- s.platform = Gem::Platform::RUBY
9
- s.files = Dir['**/**']
10
- s.executables = ['themekit']
11
- s.has_rdoc = false
12
- s.add_dependency "sinatra"
13
- end
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{themekit}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Yardstick Software"]
12
+ s.date = %q{2010-04-15}
13
+ s.default_executable = %q{themekit}
14
+ s.description = %q{A tiny app that makes designing Yardstick Measure themes a whole lot more enjoyable.}
15
+ s.email = %q{kyle@yardsticksoftware.com}
16
+ s.executables = ["themekit"]
17
+ s.extra_rdoc_files = [
18
+ "README.md"
19
+ ]
20
+ s.files = [
21
+ "README.md",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "bin/screenshots",
25
+ "bin/themekit",
26
+ "bin/webkit2png",
27
+ "example_theme/info.yml",
28
+ "example_theme/styles.css",
29
+ "example_theme/theme.html",
30
+ "github-test.rb",
31
+ "lib/themekit.rb",
32
+ "lib/themekit/data.rb",
33
+ "lib/themekit/server.rb",
34
+ "lib/themekit/theme.rb",
35
+ "themekit-0.1.0.gem",
36
+ "themekit.gemspec"
37
+ ]
38
+ s.homepage = %q{http://github.com/yardstick/themekit}
39
+ s.rdoc_options = ["--charset=UTF-8"]
40
+ s.require_paths = ["lib"]
41
+ s.rubygems_version = %q{1.3.6}
42
+ s.summary = %q{Enjoyable theming for Yardstick Measure.}
43
+
44
+ if s.respond_to? :specification_version then
45
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
46
+ s.specification_version = 3
47
+
48
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
49
+ s.add_runtime_dependency(%q<sinatra>, [">= 0.9.4"])
50
+ else
51
+ s.add_dependency(%q<sinatra>, [">= 0.9.4"])
52
+ end
53
+ else
54
+ s.add_dependency(%q<sinatra>, [">= 0.9.4"])
55
+ end
56
+ end
14
57
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Yardstick Software
@@ -14,8 +14,8 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-02-25 00:00:00 -07:00
18
- default_executable:
17
+ date: 2010-04-15 00:00:00 -06:00
18
+ default_executable: themekit
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: sinatra
@@ -26,18 +26,23 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 0
29
- version: "0"
29
+ - 9
30
+ - 4
31
+ version: 0.9.4
30
32
  type: :runtime
31
33
  version_requirements: *id001
32
- description:
34
+ description: A tiny app that makes designing Yardstick Measure themes a whole lot more enjoyable.
33
35
  email: kyle@yardsticksoftware.com
34
36
  executables:
35
37
  - themekit
36
38
  extensions: []
37
39
 
38
- extra_rdoc_files: []
39
-
40
+ extra_rdoc_files:
41
+ - README.md
40
42
  files:
43
+ - README.md
44
+ - Rakefile
45
+ - VERSION
41
46
  - bin/screenshots
42
47
  - bin/themekit
43
48
  - bin/webkit2png
@@ -45,22 +50,19 @@ files:
45
50
  - example_theme/styles.css
46
51
  - example_theme/theme.html
47
52
  - github-test.rb
53
+ - lib/themekit.rb
48
54
  - lib/themekit/data.rb
49
55
  - lib/themekit/server.rb
50
56
  - lib/themekit/theme.rb
51
- - lib/themekit.rb
52
- - Rakefile
53
- - README.md
54
57
  - themekit-0.1.0.gem
55
58
  - themekit.gemspec
56
- - VERSION
57
59
  has_rdoc: true
58
- homepage: https://github.com/yardstick/themekit/tree/master
60
+ homepage: http://github.com/yardstick/themekit
59
61
  licenses: []
60
62
 
61
63
  post_install_message:
62
- rdoc_options: []
63
-
64
+ rdoc_options:
65
+ - --charset=UTF-8
64
66
  require_paths:
65
67
  - lib
66
68
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -83,6 +85,6 @@ rubyforge_project:
83
85
  rubygems_version: 1.3.6
84
86
  signing_key:
85
87
  specification_version: 3
86
- summary: A tiny app that makes designing Yardstick Measure themes a whole lot more enjoyable.
88
+ summary: Enjoyable theming for Yardstick Measure.
87
89
  test_files: []
88
90