Add gemspec and Gemfile

This commit is contained in:
Brandon Robins
2017-10-22 22:03:14 -05:00
parent 9773d247f5
commit 50a3472a1f
4 changed files with 172 additions and 0 deletions

22
calligraphy.gemspec Normal file
View File

@@ -0,0 +1,22 @@
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