Sha256: b5d266e9cff2545d4c76af675804623599040a87c98e1932655a2441e8462335
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'powerpoint/version' Gem::Specification.new do |spec| spec.name = "powerpoint" spec.version = Powerpoint::VERSION spec.authors = ["pythonicrubyist"] spec.email = ["pythonicrubyist@gmail.com"] spec.description = %q{A Ruby gem that can create a PowerPoint presentation.} spec.summary = %q{powerpoint is a Ruby gem that can create a PowerPoint presentation based on a standard pptx template.} spec.homepage = "https://github.com/pythonicrubyist/powerpoint" spec.license = "MIT" spec.files = `git ls-files`.split($/) 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.required_ruby_version = '>= 1.9.2' spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency 'rspec', '~> 2.13.0' spec.add_dependency 'rubyzip', '~> 1.0.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
powerpoint-1.4 | powerpoint.gemspec |