Sha256: 9ec26a01688281caadf32ea115301ee1859a65b09a6575a1c6ce5ceb5aaa9de7

Contents?: true

Size: 1.31 KB

Versions: 4

Compression:

Stored size: 1.31 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)

DBT 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 +DBT.analyze(app)+ 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

4 entries across 4 versions & 1 rubygems

Version Path
dbt-1.1.5 dbt.gemspec
dbt-1.1.4 dbt.gemspec
dbt-1.1.3 dbt.gemspec
dbt-1.1.2 dbt.gemspec