bundle gem foreman-export-god

This commit is contained in:
Bob Potter 2012-02-01 17:47:03 -06:00
commit bae849ae5d
6 changed files with 49 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source "http://rubygems.org"
# Specify your gem's dependencies in foreman-export-god.gemspec
gemspec

1
Rakefile Normal file
View File

@ -0,0 +1 @@
require "bundler/gem_tasks"

View File

@ -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

View File

@ -0,0 +1,9 @@
require "foreman-export-god/version"
module Foreman
module Export
module God
# Your code goes here...
end
end
end

View File

@ -0,0 +1,7 @@
module Foreman
module Export
module God
VERSION = "0.0.1"
end
end
end