Sha256: a2d645e678bdd0e8f9ac51b20d35fc94cd798d413b3cb4013c6d2f2c7a0562e2
Contents?: true
Size: 815 Bytes
Versions: 1
Compression:
Stored size: 815 Bytes
Contents
# frozen_string_literal: true Gem::Specification.new do |spec| spec.name = 'jekyll_push' spec.version = '0.1.2' spec.authors = ['marii'] spec.email = ['m.s.nyrop@gmail.com'] spec.summary = 'gem to push a compiled jekyll site to a github branch' spec.description = 'gem to push a compiled jekyll site to a github branch' spec.homepage = 'https://github.com/mnyrop/jekyll_push' spec.license = 'MIT' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.require_paths = ['lib'] spec.add_runtime_dependency 'jekyll', '> 3.0', '< 4.0' spec.add_runtime_dependency 'rainbow', '~> 3.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll_push-0.1.2 | jekyll_push.gemspec |