vagrant-solaris10.gemspec in vagrant-solaris10-0.0.0 vs vagrant-solaris10.gemspec in vagrant-solaris10-0.0.1
- old
+ new
@@ -1,21 +1,24 @@
-# -*- encoding: utf-8 -*-
+# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-solaris10/version'
-Gem::Specification.new do |gem|
- gem.name = "vagrant-solaris10"
- gem.version = Vagrant::Solaris10::VERSION
- gem.authors = ["Tnarik Innael"]
- gem.email = ["tnarik@gmail.com"]
- gem.description = "Guest plugin for Vagrant... Solaris10"
- gem.summary = "Guest plugin for Vagrant... Solaris10"
- gem.homepage = ""
+Gem::Specification.new do |spec|
+ spec.name = "vagrant-solaris10"
+ spec.version = Vagrant::Solaris10::VERSION
+ spec.authors = ["Tnarik Innael"]
+ spec.email = ["tnarik@lecafeautomatique.co.uk"]
+ spec.description = "Guest plugin for Vagrant Solaris10"
+ spec.summary = "Guest plugin for Vagrant Solaris10"
+ spec.homepage = "https://github.com/tnarik/vagrant-solaris10"
+ spec.license = "MIT"
- gem.rubyforge_project = "vagrant-solaris10"
+ spec.files = `git ls-files`.split($/)
+ spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
+ spec.require_paths = ["lib"]
- gem.files = `git ls-files`.split($/)
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
- gem.require_paths = ["lib"]
-end
+ # development dependencies
+ spec.add_development_dependency "bundler", "~> 1.6"
+ spec.add_development_dependency "rake"
+end
\ No newline at end of file