forked from rmoriz/hetzner-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
246 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--color | ||
--require spec_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Metrics/LineLength: | ||
Enabled: false | ||
|
||
Metrics/MethodLength: | ||
Enabled: false | ||
|
||
Style/FileName: | ||
Enabled: false | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
|
||
Metrics/ClassLength: | ||
Enabled: false | ||
|
||
Metrics/AbcSize: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in hetzner.gemspec | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
require "hetzner/bootstrap/version" | ||
$LOAD_PATH.push File.expand_path('../lib', __FILE__) | ||
require 'hetzner/bootstrap/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "hetzner-bootstrap" | ||
s.name = 'hetzner-bootstrap' | ||
s.version = Hetzner::Bootstrap::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Roland Moriz"] | ||
s.email = ["roland@moriz.de"] | ||
s.homepage = "http://moriz.de/opensource/hetzner-api" | ||
s.summary = %q{Easy bootstrapping of hetzner.de rootservers using hetzner-api} | ||
s.description = %q{Easy bootstrapping of hetzner.de rootservers using hetzner-api} | ||
s.authors = ['Roland Moriz'] | ||
s.email = ['roland@moriz.de'] | ||
s.homepage = 'http://moriz.de/opensource/hetzner-api' | ||
s.summary = 'Easy bootstrapping of hetzner.de rootservers using hetzner-api' | ||
s.description = 'Easy bootstrapping of hetzner.de rootservers using hetzner-api' | ||
|
||
s.add_dependency 'hetzner-api', '>= 1.1.0' | ||
s.add_dependency 'net-ssh', '>= 2.6.0' | ||
s.add_dependency 'erubis', '>= 2.7.0' | ||
|
||
s.add_development_dependency "rspec", ">= 2.13.0" | ||
s.add_development_dependency "rake" | ||
s.add_development_dependency 'rspec', '~> 3.4.0' | ||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rubocop', '~> 0.36.0' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.