lib/bolt.rb in benofsky-bolt-0.1.8 vs lib/bolt.rb in benofsky-bolt-0.1.9
- old
+ new
@@ -38,11 +38,11 @@
# Creates a new build object and runs it resulting in building
# a bolt project and saving all files into the "out" directory.
def build
require 'bolt/build'
- Build.new().run
+ Build.new.run
end
# Parses command line options
def parse_options
$config.resources = "resources"
@@ -95,6 +95,6 @@
$config.base_dir = (ARGV.count == 2) ? ARGV[1] : "."
$config.base_dir += '/' if $config.base_dir[-1..$config.base_dir.length] != '/'
end
end
end
-end
\ No newline at end of file
+end