Add gemspec and Gemfile
This commit is contained in:
22
calligraphy.gemspec
Normal file
22
calligraphy.gemspec
Normal 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
|
||||
Reference in New Issue
Block a user