Sha256: 2cf6b81944463791af5d57e4bfd94f55b492e9f155c1ed09c25bda24c34d8a0f

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'delegated_presenter/version'

Gem::Specification.new do |gem|
  gem.name            = "delegated_presenter"
  gem.version         = DelegatedPresenter::VERSION
  gem.authors         = ["Jason Waldrip"]
  gem.email           = ["jason@waldrip.net"]
  gem.description     = %q{Simple presenter allows for a simple way for you to present a model to your views without cluttering up the original model.}
  gem.summary         = %q{Simple presenter allows for a simple way for you to present a model to your views without cluttering up the original model.}
  gem.homepage        = "http://github.com/jwaldrip/delegated_presenter"

  gem.files           = `git ls-files`.split($/)
  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.add_dependency  "activesupport"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delegated_presenter-0.1.1 delegated_presenter.gemspec
delegated_presenter-0.1.0 delegated_presenter.gemspec