Sha256: ed83e829183415bcd328270c5106c40e5b099c53f0a54da3e2621966b5ad8921
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# encoding: UTF-8 $: << File.expand_path("../lib", __FILE__) require "ruic/version" Gem::Specification.new do |s| s.name = "RUIC" s.version = RUIC::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Gavin Kistner"] s.email = ["gavin@phrogz.net"] s.license = "MIT License" s.summary = %q{Library and DSL analyzing and manipulating UI Composer applications and presentations.} s.description = %q{RUIC is a library that understands the XML formats used by NVIDIA's "UI Composer" tool suite. In addition to APIs for analyzing and manipulating these files—the UIC portion of the library—it also includes a mini DSL for writing scripts that can be run by the `ruic` interpreter.} s.homepage = "https://github.com/Phrogz/RUIC" s.add_runtime_dependency "nokogiri", '~> 1' 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"] s.bindir = 'bin' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
RUIC-0.0.1 | ruic.gemspec |