forked from amatsuda/active_decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
active_decorator.gemspec
30 lines (25 loc) · 1.02 KB
/
active_decorator.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
30
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "active_decorator/version"
Gem::Specification.new do |s|
s.name = "active_decorator"
s.version = ActiveDecorator::VERSION
s.authors = ["Akira Matsuda"]
s.email = ["[email protected]"]
s.homepage = 'https://github.com/amatsuda/active_decorator'
s.license = 'MIT'
s.summary = %q{A simple and Rubyish view helper for Rails}
s.description = %q{A simple and Rubyish view helper for Rails}
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_dependency 'activesupport'
s.add_development_dependency 'test-unit-rails'
s.add_development_dependency 'selenium-webdriver'
s.add_development_dependency 'puma'
s.add_development_dependency 'capybara'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rake'
s.add_development_dependency 'byebug'
end