-
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.
Signed-off-by: Julian Hjortshoj <[email protected]>
- Loading branch information
Paul Warren
authored and
Julian Hjortshoj
committed
Nov 8, 2016
1 parent
e6f4572
commit 301e923
Showing
22 changed files
with
475 additions
and
490 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
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
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,18 +1,18 @@ | ||
# coding: utf-8 | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "bosh_config_resource" | ||
spec.version = "0.0.1" | ||
spec.summary = "a gem for other things" | ||
spec.authors = ["Paul Warren", "Julian Hjortshoj"] | ||
spec.name = 'bosh_config_resource' | ||
spec.version = '0.0.1' | ||
spec.summary = 'a gem for other things' | ||
spec.authors = ['Paul Warren', 'Julian Hjortshoj'] | ||
|
||
spec.files = Dir.glob("{lib,bin}/**/*") | ||
spec.files = Dir.glob('{lib,bin}/**/*') | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_dependency "minitar" | ||
spec.add_dependency 'minitar' | ||
|
||
spec.add_development_dependency "bundler", "~> 1.7" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency 'bundler', '~> 1.7' | ||
spec.add_development_dependency 'rake', '~> 10.0' | ||
spec.add_development_dependency 'rspec', '~> 3.0' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "json" | ||
s.version = "1.8.2" | ||
s.name = 'json' | ||
s.version = '1.8.2' | ||
s.summary = "please don't ask" | ||
s.authors = ["satan"] | ||
s.authors = ['satan'] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "nokogiri" | ||
s.version = "1.5.11" | ||
s.name = 'nokogiri' | ||
s.version = '1.5.11' | ||
s.summary = "please don't ask" | ||
s.authors = ["satan"] | ||
s.authors = ['satan'] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
require "bosh_config_resource/bosh" | ||
require 'bosh_config_resource/bosh' | ||
|
||
require "bosh_config_resource/bosh_release" | ||
require "bosh_config_resource/bosh_config" | ||
require "bosh_config_resource/ca_cert" | ||
require "bosh_config_resource/auth" | ||
require 'bosh_config_resource/bosh_release' | ||
require 'bosh_config_resource/bosh_config' | ||
require 'bosh_config_resource/ca_cert' | ||
require 'bosh_config_resource/auth' | ||
|
||
require "bosh_config_resource/in_command" | ||
require "bosh_config_resource/out_command" | ||
require "bosh_config_resource/check_command" | ||
require 'bosh_config_resource/in_command' | ||
require 'bosh_config_resource/out_command' | ||
require 'bosh_config_resource/check_command' |
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
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
Oops, something went wrong.