jekyll 0.6.1 → 0.6.2
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.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- data/History.txt +9 -2
- data/Rakefile +1 -1
- data/jekyll.gemspec +2 -2
- data/lib/jekyll.rb +1 -1
- data/lib/jekyll/filters.rb +1 -1
- data/lib/jekyll/page.rb +1 -1
- data/lib/jekyll/site.rb +3 -3
- metadata +4 -4
data/History.txt
CHANGED
@@ -1,8 +1,15 @@
|
|
1
|
-
== 0.6.
|
1
|
+
== 0.6.2 / 2010-06-25
|
2
|
+
* Bug Fixes
|
3
|
+
* Fix Rakefile 'release' task (tag pushing was missing origin)
|
4
|
+
* Ensure that RedCloth is loaded when textilize filter is used (#183)
|
5
|
+
* Expand source, destination, and plugin paths (#180)
|
6
|
+
* Fix page.url to include full relative path (#181)
|
7
|
+
|
8
|
+
== 0.6.1 / 2010-06-24
|
2
9
|
* Bug Fixes
|
3
10
|
* Fix Markdown Pygments prefix and suffix (#178)
|
4
11
|
|
5
|
-
== 0.6.0
|
12
|
+
== 0.6.0 / 2010-06-23
|
6
13
|
* Major Enhancements
|
7
14
|
* Proper plugin system (#19, #100)
|
8
15
|
* Add safe mode so unsafe converters/generators can be added
|
data/Rakefile
CHANGED
@@ -120,7 +120,7 @@ task :release => :build do
|
|
120
120
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
121
121
|
sh "git tag v#{version}"
|
122
122
|
sh "git push origin master"
|
123
|
-
sh "git push v#{version}"
|
123
|
+
sh "git push origin v#{version}"
|
124
124
|
sh "gem push pkg/#{name}-#{version}.gem"
|
125
125
|
end
|
126
126
|
|
data/jekyll.gemspec
CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
5
5
|
|
6
6
|
s.name = 'jekyll'
|
7
|
-
s.version = '0.6.
|
8
|
-
s.date = '2010-06-
|
7
|
+
s.version = '0.6.2'
|
8
|
+
s.date = '2010-06-25'
|
9
9
|
s.rubyforge_project = 'jekyll'
|
10
10
|
|
11
11
|
s.summary = "A simple, blog aware, static site generator."
|
data/lib/jekyll.rb
CHANGED
@@ -45,7 +45,7 @@ require_all 'jekyll/generators'
|
|
45
45
|
require_all 'jekyll/tags'
|
46
46
|
|
47
47
|
module Jekyll
|
48
|
-
VERSION = '0.6.
|
48
|
+
VERSION = '0.6.2'
|
49
49
|
|
50
50
|
# Default options. Overriden by values in _config.yml or command-line opts.
|
51
51
|
# (Strings rather symbols used for compatability with YAML).
|
data/lib/jekyll/filters.rb
CHANGED
data/lib/jekyll/page.rb
CHANGED
data/lib/jekyll/site.rb
CHANGED
@@ -14,9 +14,9 @@ module Jekyll
|
|
14
14
|
self.config = config.clone
|
15
15
|
|
16
16
|
self.safe = config['safe']
|
17
|
-
self.source = config['source']
|
18
|
-
self.dest = config['destination']
|
19
|
-
self.plugins = config['plugins']
|
17
|
+
self.source = File.expand_path(config['source'])
|
18
|
+
self.dest = File.expand_path(config['destination'])
|
19
|
+
self.plugins = File.expand_path(config['plugins'])
|
20
20
|
self.lsi = config['lsi']
|
21
21
|
self.pygments = config['pygments']
|
22
22
|
self.permalink_style = config['permalink'].to_sym
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 2
|
10
|
+
version: 0.6.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tom Preston-Werner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-06-
|
18
|
+
date: 2010-06-25 00:00:00 -07:00
|
19
19
|
default_executable: jekyll
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|