-
Notifications
You must be signed in to change notification settings - Fork 34
/
action_args.gemspec
29 lines (25 loc) · 1006 Bytes
/
action_args.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- 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 = ['[email protected]']
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