jekyll 0.9.0 → 0.10.0

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.

Files changed (5) hide show
  1. data/History.txt +4 -0
  2. data/bin/jekyll +4 -0
  3. data/jekyll.gemspec +2 -2
  4. data/lib/jekyll.rb +1 -1
  5. metadata +4 -4
@@ -1,3 +1,7 @@
1
+ == 0.10.0 / 2010-12-16
2
+ * Bug Fixes
3
+ * Add --no-server option.
4
+
1
5
  == 0.9.0 / 2010-12-15
2
6
  * Minor Enhancements
3
7
  * Use OptionParser's [no-] functionality for better boolean parsing.
data/bin/jekyll CHANGED
@@ -36,6 +36,10 @@ opts = OptionParser.new do |opts|
36
36
  options['server_port'] = port unless port.nil?
37
37
  end
38
38
 
39
+ opts.on("--no-server", "Do not start a web server") do |part|
40
+ options['server'] = false
41
+ end
42
+
39
43
  opts.on("--base-url [BASE_URL]", "Serve website from a given base URL (default '/'") do |baseurl|
40
44
  options['baseurl'] = baseurl
41
45
  end
@@ -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.9.0'
8
- s.date = '2010-12-15'
7
+ s.version = '0.10.0'
8
+ s.date = '2010-12-16'
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.9.0'
48
+ VERSION = '0.10.0'
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).
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: 59
4
+ hash: 55
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 9
8
+ - 10
9
9
  - 0
10
- version: 0.9.0
10
+ version: 0.10.0
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-12-15 00:00:00 -08:00
18
+ date: 2010-12-16 00:00:00 -08:00
19
19
  default_executable: jekyll
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency