Sha256: b15e53818726b67447e185f35363db5792824d161de7867b6dd56a8094e6f461
Contents?: true
Size: 810 Bytes
Versions: 4
Compression:
Stored size: 810 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "syntax_fix/version" Gem::Specification.new do |s| s.name = "syntax_fix" s.version = SyntaxFix::VERSION s.authors = ["Sergey Parizhskiy"] s.email = ["parizhskiy@gmail.com"] s.homepage = "https://github.com/HeeL/syntax_fix" s.summary = %q{Replace Ruby 1.8 syntax with the modern one} s.description = %q{Replace Ruby 1.8 syntax with the Ruby 1.9 syntax all over the project} s.rubyforge_project = "syntax_fix" 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_development_dependency "rspec" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
syntax_fix-0.0.4 | syntax_fix.gemspec |
syntax_fix-0.0.3 | syntax_fix.gemspec |
syntax_fix-0.0.2 | syntax_fix.gemspec |
syntax_fix-0.0.1 | syntax_fix.gemspec |