Sha256: 5ea93e011801fc40b2080d9d7e6f7bcbd2295b32ca2ffb9f597bad18a2a2e510

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sugarcube/version.rb', __FILE__)

Gem::Specification.new do |gem|
  gem.name          = 'sugarcube'
  gem.version       = SugarCube::Version

  gem.authors = ['Colin T.A. Gray', 'Thom Parkin', 'Katsuyoshi Ito', 'Fusionbox']
  gem.email   = ['colinta@gmail.com']
  gem.summary     = %{Extensions for Ruby to make Rubymotion development more enjoyable, and hopefully more rubyesque!}
  gem.description = <<-DESC
== Description

CocoaTouch/iOS is a *verbose* framework.  These extensions hope to make
development in rubymotion more enjoyable by tacking "UI" methods onto the
base classes (String, Fixnum, Float).  With sugarcube, you can create a
color from an integer or symbol, or create a UIFont or UIImage from a
string.

Some UI classes are opened up as well, like adding the <tt><<</tt> operator to a
<tt>UIView</tt> instance, instead of <tt>view.addSubview(subview)</tt>, you can
use the more idiomatic: <tt>view << subview</tt>.
DESC

  gem.homepage    = 'https://github.com/rubymotion/sugarcube'

  gem.files        = `git ls-files`.split($\)
  gem.executables  = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files   = gem.files.grep(%r{^spec/})

  gem.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sugarcube-0.13.7 sugarcube.gemspec