Sha256: 29fcf5bcf3394616e5c8d61cb3dace1cbf3d582aff43b4c0797a33af356bacda
Contents?: true
Size: 1022 Bytes
Versions: 1
Compression:
Stored size: 1022 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = "rust_playground_highlight" gem.version = '0.1.3' gem.authors = ["IanWhitney"] gem.email = "ian@ianwhitney.com" gem.description = %q{Automatically add links to the Rust Playground for code samples in your Jekyll site.} gem.summary = %q{Adds a 'Run' button to your Rust code samples. You can choose to have the code in Rust Playground be dynamically generated or generated from a Gist. See the Readme for more information.} gem.homepage = "https://github.com/IanWhitney/rust_playground_highlight" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.license = "MIT" gem.add_dependency "jekyll", ">= 2.0", "< 4.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rust_playground_highlight-0.1.3 | rust_playground_highlight.gemspec |