Sha256: 0370693f3001fea0d51aa58c1c7a9248ab07a05ed1f2d052063745e436371cf9
Contents?: true
Size: 989 Bytes
Versions: 1
Compression:
Stored size: 989 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "render_me_pretty/version" Gem::Specification.new do |spec| spec.name = "render_me_pretty" spec.version = RenderMePretty::VERSION spec.authors = ["Tung Nguyen"] spec.email = ["tongueroo@gmail.com"] spec.summary = "Render ERB template and provide more useful message pointing out the line with the error in the view" spec.homepage = "https://github.com/tongueroo/render_me_pretty" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "activesupport" spec.add_dependency "rainbow" spec.add_dependency "tilt" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
render_me_pretty-1.0.0 | render_me_pretty.gemspec |