rail.gemspec in rail-0.0.2 vs rail.gemspec in rail-0.0.3

- old
+ new

@@ -6,18 +6,22 @@ Gem::Specification.new do |spec| spec.name = 'rail' spec.version = Rail::VERSION spec.authors = [ 'Ivan Ukhov' ] spec.email = [ 'ivan.ukhov@gmail.com' ] - spec.summary = 'A light framework for front-end development' - spec.description = 'A light framework for front-end development' + spec.summary = 'A light framework for front-end development ' \ + 'inspired by Rails' + spec.description = 'A light framework for front-end development ' \ + 'closely following the conventions of Ruby on Rails.' spec.homepage = 'https://github.com/IvanUkhov/rail' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^spec/}) spec.require_paths = [ 'lib' ] + + spec.required_ruby_version = '>= 1.9.3' spec.add_dependency 'rake' spec.add_dependency 'sprockets', '~> 2.12'