Sha256: 0443247f8d3ed7f2ed0453ee3bc3a0af24cf1fc4071a350770c2511325f9003b

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 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.add_runtime_dependency "ripl", '~> 0'
  s.add_runtime_dependency "ripl-multi_line", '~> 0'
  s.add_runtime_dependency "ripl-irb", '~> 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"]
  s.bindir        = 'bin'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
RUIC-0.6.0 ruic.gemspec
RUIC-0.5.0 ruic.gemspec
RUIC-0.4.4 ruic.gemspec
RUIC-0.4.3 ruic.gemspec
RUIC-0.4.1 ruic.gemspec
RUIC-0.2.3 ruic.gemspec
RUIC-0.2.2 ruic.gemspec