Files
calligraphy/calligraphy.gemspec
Brandon Robins ddb1fd9c7e Update gemspec
2017-11-21 01:12:07 -06:00

21 lines
658 B
Ruby

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'calligraphy/version'
Gem::Specification.new do |s|
s.name = 'calligraphy'
s.version = Calligraphy::VERSION
s.summary = 'WebDAV framework and extension for Rails 5'
s.description = 'WebDAV framework and extension for Rails 5'
s.author = 'Brandon Robins'
s.email = 'brandon@onebnottwo.com'
s.homepage = 'http://www.github.com/eanlain/calligraphy'
s.license = 'MIT'
s.files = Dir['lib/**/*', 'LICENSE', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_dependency 'rails', '~> 5.0'
end