bundle gem foreman-export-god
This commit is contained in:
commit
bae849ae5d
|
@ -0,0 +1,4 @@
|
|||
*.gem
|
||||
.bundle
|
||||
Gemfile.lock
|
||||
pkg/*
|
|
@ -0,0 +1,4 @@
|
|||
source "http://rubygems.org"
|
||||
|
||||
# Specify your gem's dependencies in foreman-export-god.gemspec
|
||||
gemspec
|
|
@ -0,0 +1,24 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
$:.push File.expand_path("../lib", __FILE__)
|
||||
require "foreman-export-god/version"
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "foreman-export-god"
|
||||
s.version = Foreman::Export::God::VERSION
|
||||
s.authors = ["Bob Potter"]
|
||||
s.email = ["bobby.potter@gmail.com"]
|
||||
s.homepage = ""
|
||||
s.summary = %q{TODO: Write a gem summary}
|
||||
s.description = %q{TODO: Write a gem description}
|
||||
|
||||
s.rubyforge_project = "foreman-export-god"
|
||||
|
||||
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"]
|
||||
|
||||
# specify any dependencies here; for example:
|
||||
# s.add_development_dependency "rspec"
|
||||
# s.add_runtime_dependency "rest-client"
|
||||
end
|
|
@ -0,0 +1,9 @@
|
|||
require "foreman-export-god/version"
|
||||
|
||||
module Foreman
|
||||
module Export
|
||||
module God
|
||||
# Your code goes here...
|
||||
end
|
||||
end
|
||||
end
|
|
@ -0,0 +1,7 @@
|
|||
module Foreman
|
||||
module Export
|
||||
module God
|
||||
VERSION = "0.0.1"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue