Sha256: 2c78e8237454f9b0d6ec59281f234d341bd85443a9a922b4430ed1e567a918ec

Contents?: true

Size: 1006 Bytes

Versions: 5

Compression:

Stored size: 1006 Bytes

Contents

# -*- encoding: utf-8 -*-
# frozen_string_literal: true

$:.push File.expand_path("../lib", __FILE__)
require 'action_args/version'

Gem::Specification.new do |s|
  s.name        = 'action_args'
  s.version     = ActionArgs::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Akira Matsuda']
  s.email       = ['ronnie@dio.jp']
  s.homepage    = 'http://asakusa.rubyist.net/'
  s.license     = 'MIT'
  s.metadata = {
    'source_code_uri' => 'https://github.com/asakusarb/action_args'
  }
  s.summary     = 'Controller action arguments parameterizer for Rails 4+ & Ruby 2.0+'
  s.description = 'Rails plugin gem that supports Merbish style controller action arguments.'

  s.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  s.require_paths = ["lib"]

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'test-unit-rails'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
action_args-2.7.3 action_args.gemspec
action_args-2.7.2 action_args.gemspec
action_args-2.7.1 action_args.gemspec
action_args-2.7.0 action_args.gemspec
action_args-2.6.0 action_args.gemspec