teacup.gemspec in teacup-0.0.1.pre vs teacup.gemspec in teacup-0.3.1

- old
+ new

@@ -1,26 +1,26 @@ require File.expand_path('../lib/teacup/version.rb', __FILE__) -require File.expand_path('../lib/teacup/contributors.rb', __FILE__) Gem::Specification.new do |gem| + gem.name = 'teacup' + gem.version = Teacup::VERSION - gem.authors = Teacup::CONTRIBUTORS + gem.authors = ['the rubymotion community'] + gem.description = <<-DESC - Teacup is a community-driven DSL for making CSS-like templates for RubyMotion iOS - apps. - DESC +Teacup is a community-driven DSL for making CSS-like styling, and layouts for +complex and simple iOS apps with RubyMotion. - gem.summary = 'CSS-like templates for RubyMotion.' +By aiming at making RubyMotion less tedious, Teacup makes RubyMotion feel like +interface builder, and work like a CSS stylesheet. +DESC + + gem.summary = 'A community-driven DSL for creating user interfaces on iOS.' gem.homepage = 'https://github.com/rubymotion/teacup' - gem.files = `git ls-files`.lines.map(&:strip) - - gem.executables = gem.files.grep(%r(^bin/)).map { |f| File.basename(f) } - gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) - - gem.name = 'teacup' + gem.files = `git ls-files`.split($\) gem.require_paths = ['lib'] - gem.version = "#{Teacup::VERSION}.pre" + gem.test_files = gem.files.grep(%r{^spec/}) gem.add_dependency 'rake' gem.add_development_dependency 'rspec' end