Sha256: be82bcfc68355f5628da50ef8db5b4e11b995434c0d846e1ad64b9c1cb8b954b

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = 'dbt'
  gem.version       = DBT::VERSION
  gem.email         = 'colinta@gmail.com'
  gem.licenses      = ['BSD']

  gem.authors  = ['Colin Thomas-Arnold <colinta@gmail.com>']
  gem.email   = ['colinta@gmail.com']

  gem.description = <<-DESC
DBT (Dependencies and deBugging Tool) is a tool that helps declare dependencies
(+app.files_dependencies+) and assists with debugging in a RubyMotion project.
It looks for 'break', 'requires', and 'provides' commands (it does a *teensy*
bit of code analyzing to provide some defaults) to make your RubyMotion
+Rakefile+ and +debugger_cmds+ files short and consistent.

To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
<tt>Motion::Project::App.setup</tt> block.  In your source code you can add DBT
commands and those will be translated into directives for
+app.files_dependencies+ and +debugger_cmds+.

Run +rake+ or <tt>rake debug=1</tt>, and off you go!
DESC

  gem.summary = 'Keep your Rakefile and debugger_cmds files short and consistent'
  gem.homepage = 'https://github.com/colinta/dbt'

  gem.files       = `git ls-files`.split($\)
  gem.require_paths = ['lib']
  gem.test_files  = gem.files.grep(%r{^spec/})
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dbt-1.0.6 dbt.gemspec