Sha256: bd097fc5ec2d215f851c29148fffdebcbf2ad2cbeca0c10c049425598bb61dd6
Contents?: true
Size: 1.03 KB
Versions: 10
Compression:
Stored size: 1.03 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "nabaztag_hack_kit/version" Gem::Specification.new do |s| s.name = "nabaztag_hack_kit" s.version = NabaztagHackKit::VERSION s.authors = ["RngTng - Tobias Bielohlawek"] s.email = ["tobi@soundcloud.com"] s.homepage = "https://github.com/rngtng/nabaztag_hack_kit" s.summary = %q{Sinatra server to run custom Nabaztag bytecode} s.description = %q{Sinatra server api framework to run custom bytecode on Nabaztag v1/v2. Sources + Compiler included (linux only)} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extensions = ['bytecode/src/mtl/extconf.rb'] s.bindir = 'bytecode/bin' s.executables = ['mtl_comp', 'mtl_simu', 'mtl_merge'] s.require_paths = ["lib"] ["sinatra"].each do |gem| s.add_dependency *gem.split(' ') end ["rake", "rspec", "rack-test"].each do |gem| s.add_development_dependency *gem.split(' ') end end
Version data entries
10 entries across 10 versions & 1 rubygems