From: Akshay Mankar Date: Mon, 7 Jan 2013 20:02:34 +0000 (+0530) Subject: Created Gem X-Git-Url: https://pwan.org/git/?p=vagrant-dotfiles.git;a=commitdiff_plain;h=4e619b1dcbbb066996ce907e94835b308c012d43 Created Gem --- 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