From bae849ae5dc1db00dab20c88b624e09f2817506d Mon Sep 17 00:00:00 2001 From: Bob Potter Date: Wed, 1 Feb 2012 17:47:03 -0600 Subject: [PATCH] bundle gem foreman-export-god --- .gitignore | 4 ++++ Gemfile | 4 ++++ Rakefile | 1 + foreman-export-god.gemspec | 24 ++++++++++++++++++++++++ lib/foreman-export-god.rb | 9 +++++++++ lib/foreman-export-god/version.rb | 7 +++++++ 6 files changed, 49 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Rakefile create mode 100644 foreman-export-god.gemspec create mode 100644 lib/foreman-export-god.rb create mode 100644 lib/foreman-export-god/version.rb diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b62c5be --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in foreman-export-god.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2995527 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/foreman-export-god.gemspec b/foreman-export-god.gemspec new file mode 100644 index 0000000..8a3ec6d --- /dev/null +++ b/foreman-export-god.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 diff --git a/lib/foreman-export-god.rb b/lib/foreman-export-god.rb new file mode 100644 index 0000000..70a97b0 --- /dev/null +++ b/lib/foreman-export-god.rb @@ -0,0 +1,9 @@ +require "foreman-export-god/version" + +module Foreman + module Export + module God + # Your code goes here... + end + end +end diff --git a/lib/foreman-export-god/version.rb b/lib/foreman-export-god/version.rb new file mode 100644 index 0000000..da71738 --- /dev/null +++ b/lib/foreman-export-god/version.rb @@ -0,0 +1,7 @@ +module Foreman + module Export + module God + VERSION = "0.0.1" + end + end +end