From 4e619b1dcbbb066996ce907e94835b308c012d43 Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Tue, 8 Jan 2013 01:32:34 +0530 Subject: [PATCH] Created Gem --- .gitignore | 3 +++ copy_my_conf.gemspec | 11 +++++++++++ Vagrantfile => example/Vagrantfile | 2 +- copy_my_conf.rb => lib/copy_my_conf.rb | 0 4 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 copy_my_conf.gemspec rename Vagrantfile => example/Vagrantfile (90%) rename copy_my_conf.rb => lib/copy_my_conf.rb (100%) diff --git a/.gitignore b/.gitignore index 75e3ccb..da84034 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ #Vagrant .vagrant + +#The Gem +*.gem diff --git a/copy_my_conf.gemspec b/copy_my_conf.gemspec new file mode 100644 index 0000000..44a7c31 --- /dev/null +++ b/copy_my_conf.gemspec @@ -0,0 +1,11 @@ +Gem::Specification.new do |s| + s.name = 'copy_my_conf' + s.version = '0.0.0' + s.date = '2013-01-08' + s.summary = "Vagrant Provisioner to copy your configuration files into vagrant box" + s.description = "Copy your configurations easily into vagrant box" + s.authors = ["Akshay Mankar"] + s.email = 'itsakshaymankar@gmail.com' + s.files = ["lib/copy_my_conf.rb"] + s.homepage = 'http://github.com/akshaymankar/copy_my_conf' +end diff --git a/Vagrantfile b/example/Vagrantfile similarity index 90% rename from Vagrantfile rename to example/Vagrantfile index f8c0792..ed3cdc1 100644 --- a/Vagrantfile +++ b/example/Vagrantfile @@ -1,6 +1,6 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -require File.dirname(__FILE__)+'/copy_my_conf' +require 'copy_my_conf' #This is a sample vagrant file Vagrant::Config.run do |config| diff --git a/copy_my_conf.rb b/lib/copy_my_conf.rb similarity index 100% rename from copy_my_conf.rb rename to lib/copy_my_conf.rb -- 2.39.2