Sha256: 1c398d6643678e008794990eea79789a2aaa2548964a7d89f93b7e7e706ca455

Contents?: true

Size: 1.04 KB

Versions: 10

Compression:

Stored size: 1.04 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "action_presenter"
  s.version     = ActionPresenter::VERSION
  s.authors     = ["Krzysztof Zalewski"]
  s.email       = ["zlw.zalewski@gmail.com"]
  s.homepage    = "https://github.com/zlw/action_presenter"
  s.summary     = %q{Missing link between models and views. Use presenter pattern in Rails application without changing controllers.}
  s.description = %q{Missing link between models and views. Use presenter pattern in Rails application without changing controllers.}

  s.rubyforge_project = "action_presenter"

  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 'actionpack'
  s.add_dependency 'named_accessors'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
action_presenter-1.1.6 action_presenter.gemspec
action_presenter-1.1.5 action_presenter.gemspec
action_presenter-1.1.4 action_presenter.gemspec
action_presenter-1.1.3 action_presenter.gemspec
action_presenter-1.1.2 action_presenter.gemspec
action_presenter-1.1.1 action_presenter.gemspec
action_presenter-1.1 action_presenter.gemspec
action_presenter-1.0.2 action_presenter.gemspec
action_presenter-1.0.1 action_presenter.gemspec
action_presenter-1.0 action_presenter.gemspec