# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "roller/version" Gem::Specification.new do |s| s.name = "diceroller" s.version = Roller::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Edward Monical-Vuylsteke"] s.email = ["solrane.altari@gmail.com"] s.homepage = "https://github.com/emonical/roller" s.summary = %q{Dice roller for roleplaying games} s.description = %q{A dice rolling gem that provides an effective and hopefully extensible API to meet the extensive needs of the roleplaying game community} s.add_development_dependency "rspec", ">= 2.6.0" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end