nirvdrum-jekyll 0.5.2 → 0.6.0
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 +1 -2
- data/VERSION.yml +2 -2
- data/jekyll.gemspec +7 -2
- data/lib/jekyll/site.rb +1 -4
- metadata +4 -6
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ begin
|
|
6
6
|
gem 'jeweler', '>= 0.11.0'
|
7
7
|
require 'jeweler'
|
8
8
|
Jeweler::Tasks.new do |s|
|
9
|
-
s.name = "
|
9
|
+
s.name = "jekyll"
|
10
10
|
s.summary = %Q{Jekyll is a simple, blog aware, static site generator.}
|
11
11
|
s.email = "tom@mojombo.com"
|
12
12
|
s.homepage = "http://github.com/mojombo/jekyll"
|
@@ -22,7 +22,6 @@ begin
|
|
22
22
|
s.add_dependency('directory_watcher', '>= 1.1.1')
|
23
23
|
s.add_dependency('open4', '>= 0.9.6')
|
24
24
|
end
|
25
|
-
Jeweler::GemcutterTasks.new
|
26
25
|
rescue LoadError
|
27
26
|
puts "Jeweler not available. Install it with: sudo gem install jeweler --version '>= 0.11.0'"
|
28
27
|
exit(1)
|
data/VERSION.yml
CHANGED
data/jekyll.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{jekyll}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.6.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Tom Preston-Werner"]
|
9
|
-
s.date = %q{2009-06-
|
9
|
+
s.date = %q{2009-06-28}
|
10
10
|
s.default_executable = %q{jekyll}
|
11
11
|
s.description = %q{Jekyll is a simple, blog aware, static site generator.}
|
12
12
|
s.email = %q{tom@mojombo.com}
|
@@ -47,6 +47,7 @@ Gem::Specification.new do |s|
|
|
47
47
|
"lib/jekyll/pager.rb",
|
48
48
|
"lib/jekyll/post.rb",
|
49
49
|
"lib/jekyll/site.rb",
|
50
|
+
"lib/jekyll/stylesheet.rb",
|
50
51
|
"lib/jekyll/tags/highlight.rb",
|
51
52
|
"lib/jekyll/tags/include.rb",
|
52
53
|
"test/helper.rb",
|
@@ -67,6 +68,8 @@ Gem::Specification.new do |s|
|
|
67
68
|
"test/source/_posts/2009-05-18-tags.textile",
|
68
69
|
"test/source/_posts/2009-06-22-empty-yaml.textile",
|
69
70
|
"test/source/_posts/2009-06-22-no-yaml.textile",
|
71
|
+
"test/source/_stylesheets/nested/override.less",
|
72
|
+
"test/source/_stylesheets/simple.less",
|
70
73
|
"test/source/about.html",
|
71
74
|
"test/source/category/_posts/2008-9-23-categories.textile",
|
72
75
|
"test/source/contacts.html",
|
@@ -83,6 +86,7 @@ Gem::Specification.new do |s|
|
|
83
86
|
"test/test_pager.rb",
|
84
87
|
"test/test_post.rb",
|
85
88
|
"test/test_site.rb",
|
89
|
+
"test/test_stylesheet.rb",
|
86
90
|
"test/test_tags.rb"
|
87
91
|
]
|
88
92
|
s.homepage = %q{http://github.com/mojombo/jekyll}
|
@@ -101,6 +105,7 @@ Gem::Specification.new do |s|
|
|
101
105
|
"test/test_pager.rb",
|
102
106
|
"test/test_post.rb",
|
103
107
|
"test/test_site.rb",
|
108
|
+
"test/test_stylesheet.rb",
|
104
109
|
"test/test_tags.rb"
|
105
110
|
]
|
106
111
|
|
data/lib/jekyll/site.rb
CHANGED
@@ -88,10 +88,7 @@ module Jekyll
|
|
88
88
|
Less::Engine.new(content).to_css
|
89
89
|
end
|
90
90
|
rescue LoadError
|
91
|
-
# Less is not required for stylesheet handling.
|
92
|
-
def less(content)
|
93
|
-
raise "The less gem is required for stylesheet support!"
|
94
|
-
end
|
91
|
+
# Less is not required for stylesheet handling, so no-op if it cannot be found.
|
95
92
|
end
|
96
93
|
end
|
97
94
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nirvdrum-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Preston-Werner
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2009-06-28 00:00:00 -07:00
|
13
13
|
default_executable: jekyll
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -154,10 +154,8 @@ files:
|
|
154
154
|
- test/test_site.rb
|
155
155
|
- test/test_stylesheet.rb
|
156
156
|
- test/test_tags.rb
|
157
|
-
has_rdoc:
|
157
|
+
has_rdoc: false
|
158
158
|
homepage: http://github.com/mojombo/jekyll
|
159
|
-
licenses: []
|
160
|
-
|
161
159
|
post_install_message:
|
162
160
|
rdoc_options:
|
163
161
|
- --charset=UTF-8
|
@@ -178,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
176
|
requirements: []
|
179
177
|
|
180
178
|
rubyforge_project: jekyll
|
181
|
-
rubygems_version: 1.
|
179
|
+
rubygems_version: 1.2.0
|
182
180
|
signing_key:
|
183
181
|
specification_version: 3
|
184
182
|
summary: Jekyll is a simple, blog aware, static site generator.
|