# -*- encoding: utf-8 -*- $:.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', 'Pavel Pravosud'] s.email = ['justin@indent.com.au', 'pavel@pravosud.com'] s.homepage = 'https://github.com/rwz/nestive' s.summary = 'A Rails gem for awesome nested templates and layouts' s.description = 'A Rails plugin/gem for awesome nested templates and layouts' s.licenses = ['MIT'] 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 'rails', '>= 3.0.0' end