Files
calligraphy/calligraphy.gemspec
2017-10-22 22:03:14 -05:00

23 lines
670 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 extension for Rails 5+'
s.author = 'Brandon Robins'
s.email = 'brandon.robins@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'
s.add_development_dependency 'pry-nav'
s.add_development_dependency 'rspec'
end