Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szTheory committed Oct 20, 2023
1 parent b9c0270 commit 6c4888e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
meta_presenter (0.2.4)
meta_presenter (1.0.0)
actionmailer (>= 3.0.12)
actionpack (>= 3.0.12)

Expand Down
22 changes: 10 additions & 12 deletions meta_presenter.gemspec
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@


Gem::Specification.new do |s|
s.name = 'meta_presenter'
s.version = '0.2.4'
s.version = '1.0.0'
s.platform = Gem::Platform::RUBY
s.authors = ['szTheory']
s.description = %q{Write highly focused and testable view presenter classes for your Rails controllers and actions}
s.summary = %q{MetaPresenter is a Ruby gem for writing highly focused and testable view Rails presenter classes. For each controller/action pair you get a presenter class in app/presenters that you can use in your views with with presenter.method_name. This helps you decompose your helper logic into tight, easily testable classes. There's even a DSL for method delegation on objects to reduce boilerplate.}
s.description = 'Write highly focused and testable view presenter classes for your Rails controllers and actions'
s.summary = "MetaPresenter is a Ruby gem for writing highly focused and testable view Rails presenter classes. For each controller/action pair you get a presenter class in app/presenters that you can use in your views with with presenter.method_name. This helps you decompose your helper logic into tight, easily testable classes. There's even a DSL for method delegation on objects to reduce boilerplate."
s.homepage = 'https://github.com/szTheory/meta_presenter'
s.license = 'MIT'
s.metadata = {
"source_code_uri" => "https://github.com/szTheory/meta_presenter",
'source_code_uri' => 'https://github.com/szTheory/meta_presenter',
'rubygems_mfa_required' => 'true'
}

s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(test|spec)/})
s.require_paths = ['lib']

s.required_ruby_version = '>= 2.1.0'

s.add_dependency 'actionpack', '>= 3.0.12'
s.add_dependency 'actionmailer', '>= 3.0.12'
s.add_dependency 'actionpack', '>= 3.0.12'

s.add_development_dependency 'rspec'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'bundler'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rb-readline'
s.add_development_dependency 'pry'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'rspec'
end

0 comments on commit 6c4888e

Please sign in to comment.