hotcell.gemspec in hotcell-0.0.1 vs hotcell.gemspec in hotcell-0.1.0

- old
+ new

@@ -2,21 +2,22 @@ lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'hotcell/version' Gem::Specification.new do |gem| - gem.name = "hotcell" + gem.name = 'hotcell' gem.version = Hotcell::VERSION - gem.authors = ["pyromaniac"] - gem.email = ["kinwizard@gmail.com"] + gem.authors = ['pyromaniac'] + gem.email = ['kinwizard@gmail.com'] gem.description = %q{Sandboxed ruby template processor} gem.summary = %q{Sandboxed ruby template processor} - gem.homepage = "" + gem.homepage = '' gem.files = `git ls-files`.split($/) + gem.extensions = ['ext/lexerc/extconf.rb'] 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"] + gem.require_paths = ['lib'] - gem.add_runtime_dependency "activesupport" - gem.add_runtime_dependency "racc" + gem.add_runtime_dependency 'racc' + gem.add_runtime_dependency 'activesupport' end