Sha256: 371f8f802184756a60f1d5df6d85f1f9f275d7a870b45ae12abd8c425ad1e157
Contents?: true
Size: 1016 Bytes
Versions: 1
Compression:
Stored size: 1016 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sinatra-footnotes/version' Gem::Specification.new do |gem| gem.name = "sinatra-footnotes" gem.version = Sinatra::Footnotes::VERSION gem.licenses = ['MIT'] gem.authors = ["Daniel Stutzman"] gem.email = ["dtstutz@gmail.com"] gem.description = "Every page has footnotes that give information about your application." gem.summary = "Every page has footnotes that give information about your application." gem.homepage = "https://github.com/danielstutzman/sinatra-footnotes" 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.add_dependency "sinatra" gem.add_dependency "activesupport" gem.add_dependency "i18n" # needed for active_support end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sinatra-footnotes-0.1.5 | sinatra-footnotes.gemspec |