-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipsummer.gemspec
21 lines (20 loc) · 939 Bytes
/
ipsummer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ipsummer/version'
Gem::Specification.new do |spec|
spec.name = "ipsummer"
spec.version = Ipsummer::VERSION
spec.authors = ["Taylor Kearns"]
spec.email = ["tkearns@gmail.com"]
spec.description = %q{Inject dynamic lorem ipsum directly into your markup with customized length and link options.}
spec.summary = %q{Dynamic, customized lorem ipsum.}
spec.homepage = "http://github.com/taylorkearns/ipsummer"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "rake", "~> 13"
end