Sha256: 913becf2e6df917a682f7f42f9becdeb0ee2a39d137ba08a3e950971500373e0

Contents?: true

Size: 966 Bytes

Versions: 1

Compression:

Stored size: 966 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "render_anywhere/version"

Gem::Specification.new do |s|
  s.name        = "render_anywhere"
  s.version     = RenderAnywhere::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Luke Melia"]
  s.email       = ["luke@lukemelia.com"]
  s.homepage    = ""
  s.summary     = %q{Render Rails templates to a string from anywhere.}
  s.description = %q{Out of the box, Rails will render templates in a controller context only. This gem allows for calling "render" from anywhere: models, background jobs, rake tasks, you name it.}
  s.licenses    = ['MIT']

  s.rubyforge_project = "render_anywhere"

  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.7')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
render_anywhere-0.0.9 render_anywhere.gemspec