nestive.gemspec in nestive-0.1.0 vs nestive.gemspec in nestive-0.2.0

- old
+ new

@@ -1,23 +1,26 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) -require "nestive/version" +$:.push File.expand_path('../lib', __FILE__) +require 'nestive/version' Gem::Specification.new do |s| s.name = "nestive" s.version = Nestive::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["Justin French"] - s.email = ["justin@indent.com.au"] - s.homepage = "" - s.summary = %q{A Rails plugin/gem for awesome nested templates and layouts} - s.description = %q{A Rails plugin/gem for awesome nested templates and layouts} + s.authors = ['Justin French', 'Pavel Pravosud'] + s.email = ['justin@indent.com.au', 'pavel@pravosud.com'] + s.homepage = 'https://github.com/rwz/nestive' + s.summary = 'A Rails plugin/gem for awesome nested templates and layouts' + s.description = 'A Rails plugin/gem for awesome nested templates and layouts' - s.rubyforge_project = "nestive" + s.rubyforge_project = 'nestive' 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"] - - s.add_dependency(%q<rails>, ["~> 3.0"]) + s.require_paths = ['lib'] + + s.add_dependency 'rails', '~> 3.0' + s.add_development_dependency 'combustion', '~> 0.3.2' + s.add_development_dependency 'rspec-rails', '~> 2.11' + end