benofsky-bolt 0.1.8 → 0.1.9
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/lib/bolt/project.rb +1 -2
- data/lib/bolt.rb +2 -2
- metadata +2 -2
data/lib/bolt/project.rb
CHANGED
|
@@ -11,8 +11,7 @@ require 'bolt/base'
|
|
|
11
11
|
module Bolt
|
|
12
12
|
class Project < Base
|
|
13
13
|
# Takes an ostruct options object created by parsing ARGV
|
|
14
|
-
def initialize(
|
|
15
|
-
super(options)
|
|
14
|
+
def initialize()
|
|
16
15
|
@default_directories = [$config.pages, $config.views, $config.lib, $config.resources]
|
|
17
16
|
@default_files = {$config.config => "default_files/config.yml"}
|
|
18
17
|
end
|
data/lib/bolt.rb
CHANGED
|
@@ -40,7 +40,7 @@ module Bolt
|
|
|
40
40
|
# a bolt project and saving all files into the "out" directory.
|
|
41
41
|
def build
|
|
42
42
|
require 'bolt/build'
|
|
43
|
-
Build.new
|
|
43
|
+
Build.new.run
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
# Parses command line options
|
|
@@ -97,4 +97,4 @@ module Bolt
|
|
|
97
97
|
end
|
|
98
98
|
end
|
|
99
99
|
end
|
|
100
|
-
end
|
|
100
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: benofsky-bolt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben McRedmond
|
|
@@ -10,7 +10,7 @@ bindir:
|
|
|
10
10
|
- bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-
|
|
13
|
+
date: 2010-05-02 00:00:00 +01:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|