# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'naftwik/version' Gem::Specification.new do |spec| spec.name = "naftwik" spec.version = Naftwik::VERSION spec.authors = ["Max Cantor"] spec.email = ["max@maxcantor.net"] spec.summary = "An outrageous HTML5 multiplayer game engine with JavaScript and Ruby toolkits." spec.description = "Naftwik is a lightweight, full-featured development framework that does so many great things, etc, etc." spec.homepage = "https://www.maxcantor.com/naftwik.html" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_dependency "rack", "~> 2.0" end