Sha256: 00adc7a865e439090ce873cfc7266890b9d166fd6451b6fb48892e06eb1a7f73
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'octopress-wrap-tag/version' Gem::Specification.new do |spec| spec.name = "octopress-wrap-tag" spec.version = Octopress::Tags::Wrap::VERSION spec.authors = ["Brandon Mathis"] spec.email = ["brandon@imathis.com"] spec.summary = %q{A Liquid block tag which makes it easy to wrap an include, render or yield tag with html} spec.description = %q{A Liquid block tag which makes it easy to wrap an include, render or yield tag with html} spec.homepage = "https://github.com/octopress/wrap-tag" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_runtime_dependency "octopress-tag-helpers", "~> 1.0" spec.add_runtime_dependency "octopress-include-tag", "~> 1.0" spec.add_runtime_dependency "octopress-render-tag", "~> 1.0" spec.add_runtime_dependency "octopress-content-for", "~> 1.0" spec.add_runtime_dependency "octopress-return-tag", "~> 1.0" spec.add_runtime_dependency "jekyll", "~> 2.0" spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake" spec.add_development_dependency "clash" spec.add_development_dependency "octopress-ink" spec.add_development_dependency "octopress" if RUBY_VERSION >= "2" spec.add_development_dependency "octopress-debugger" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
octopress-wrap-tag-1.1.0 | octopress-wrap-tag.gemspec |