jekyll 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

@@ -1,8 +1,15 @@
1
- == 0.6.1
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
 
@@ -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.1'
8
- s.date = '2010-06-23'
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."
@@ -45,7 +45,7 @@ require_all 'jekyll/generators'
45
45
  require_all 'jekyll/tags'
46
46
 
47
47
  module Jekyll
48
- VERSION = '0.6.1'
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).
@@ -2,7 +2,7 @@ module Jekyll
2
2
 
3
3
  module Filters
4
4
  def textilize(input)
5
- RedCloth.new(input).to_html
5
+ TextileConverter.new.convert(input)
6
6
  end
7
7
 
8
8
  def date_to_string(date)
@@ -90,7 +90,7 @@ module Jekyll
90
90
 
91
91
  def to_liquid
92
92
  self.data.deep_merge({
93
- "url" => self.url,
93
+ "url" => File.join(@dir, self.url),
94
94
  "content" => self.content })
95
95
  end
96
96
 
@@ -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: 5
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 1
10
- version: 0.6.1
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-23 00:00:00 -07:00
18
+ date: 2010-06-25 00:00:00 -07:00
19
19
  default_executable: jekyll
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency