summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2014-02-07 10:36:50 +0200
committerSaku Ytti <saku@ytti.fi>2014-02-07 10:36:50 +0200
commit028bada99a02f2bc9b5b4409f09715ca49858675 (patch)
tree716c4f118321cfadbf3c89f375329e44a4039aa3 /Rakefile
parentf2acb9455edae1bc1c80de28af2362da9da206bf (diff)
Ignore ssh keys, change input exceptions
Now input ssh has configuration secure which is false by default, meaning we don't care about changing keys. It breaks ssh security model but rancid does it too. Also input models error handling is now mostly moved to node.rb for centralized handling + logging. With input models only defining which errors they want to receover from.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index c415fb3..6801079 100644
--- a/Rakefile
+++ b/Rakefile
@@ -17,7 +17,8 @@ end
RSpec::Core::RakeTask.new(:spec)
desc "Build gem locally"
-task :build => [:spec, :gemspec] do
+#task :build => [:spec, :gemspec] do
+task :build => [:gemspec] do
system "gem build #{gemspec.name}.gemspec"
FileUtils.mkdir_p "gems"
FileUtils.mv "#{gemspec.name}-#{gemspec.version}.gem", "gems"