jekyll-docs 1.0.0.pre.rc1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c7703dbb018aae67877c0c7a84a0760210c80de5
4
+ data.tar.gz: 73b6b922c6d7a3ef6d66b8acee2e37152976a83e
5
+ SHA512:
6
+ metadata.gz: 1f26eeb28033a7e7bdb641aa91a8d82538db017960ec906bca8b66cfaff455b72cc033d2990b7457faf0f2eca433f013bb7bda96eecb25ac9e441eb2e5e6cec8
7
+ data.tar.gz: 49590e1e081df5246544bad21f538bfa160f4d4e4ddddd903904cb01e85767cf94ab3b4114ffaace3a1096fe7103f045e3d60afd54ad3174afa05266e9c00ee5
@@ -0,0 +1,30 @@
1
+ module Jekyll
2
+ module Commands
3
+ class Docs < Command
4
+
5
+ class << self
6
+
7
+ def init_with_program(prog)
8
+ prog.command(:docs) do |c|
9
+ c.syntax 'docs'
10
+ c.description "Launch local server with docs for Jekyll v#{Jekyll::VERSION}"
11
+
12
+ c.option 'port', '-P', '--port [PORT]', 'Port to listen on. Defaults to 4000.'
13
+ c.option 'host', '-H', '--host [HOST]', 'Host to bind to. Defaults to 127.0.0.1.'
14
+
15
+ c.action do |args, options|
16
+ options.merge!({
17
+ 'source' => File.expand_path("../../../site", File.dirname(__FILE__)),
18
+ 'destination' => File.expand_path("../../../site/_site", File.dirname(__FILE__))
19
+ })
20
+ Jekyll::Commands::Build.process(options)
21
+ Jekyll::Commands::Serve.process(options)
22
+ end
23
+ end
24
+ end
25
+
26
+ end
27
+
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,7 @@
1
+ require "jekyll/docs/version"
2
+
3
+ module Jekyll
4
+ module Docs
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Jekyll
2
+ module Docs
3
+ VERSION = '1.0.0-rc1 '
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ require 'jekyll-docs/version'
2
+ require 'jekyll/commands/docs'
3
+
4
+ module Jekyll
5
+ module Docs
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-docs
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.pre.rc1
5
+ platform: ruby
6
+ authors:
7
+ - Parker Moore
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description:
42
+ email:
43
+ - parkrmoore@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - lib/jekyll-docs.rb
49
+ - lib/jekyll-docs/version.rb
50
+ - lib/jekyll/commands/docs.rb
51
+ - lib/jekyll/docs.rb
52
+ homepage: http://jekyllrb.com
53
+ licenses:
54
+ - MIT
55
+ metadata: {}
56
+ post_install_message:
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">"
68
+ - !ruby/object:Gem::Version
69
+ version: 1.3.1
70
+ requirements: []
71
+ rubyforge_project:
72
+ rubygems_version: 2.2.2
73
+ signing_key:
74
+ specification_version: 4
75
+ summary: Offline usage documentation for Jekyll.
76
+ test_files: []