Created Gem
authorAkshay Mankar <akshaym@thoughtworks.com>
Mon, 7 Jan 2013 20:02:34 +0000 (01:32 +0530)
committerAkshay Mankar <akshaym@thoughtworks.com>
Mon, 7 Jan 2013 20:14:50 +0000 (01:44 +0530)
.gitignore
copy_my_conf.gemspec [new file with mode: 0644]
example/Vagrantfile [moved from Vagrantfile with 90% similarity]
lib/copy_my_conf.rb [moved from copy_my_conf.rb with 100% similarity]

index 75e3ccb..da84034 100644 (file)
@@ -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 (file)
index 0000000..44a7c31
--- /dev/null
@@ -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
similarity index 90%
rename from Vagrantfile
rename to example/Vagrantfile
index f8c0792..ed3cdc1 100644 (file)
@@ -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|
similarity index 100%
rename from copy_my_conf.rb
rename to lib/copy_my_conf.rb