dbt 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dbt.gemspec +7 -7
- data/lib/dbt/version.rb +1 -1
- metadata +8 -9
- data/.rdoc_options +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b8138c718478368ce9b0743ed2a56a81f9a5245
|
4
|
+
data.tar.gz: 3d052424019827d28bc744970777735b465fd42d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4de046d9fec30e5888a99184749f2b44804678872b52aa8536e5402c8038e31d5fd393348f1ed8611edf89d0da12fe1179c33909c680184405229dc8696e8c3
|
7
|
+
data.tar.gz: 989e89a03421e76934b0c2e4c9fd2a12f091f89298202518a7ceabe19c00f4b984cac8f6df1b17e39bf32ca33451297b8dc86dc094d4b29c3d50603a6376a482
|
data/dbt.gemspec
CHANGED
@@ -11,18 +11,18 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.email = ['colinta@gmail.com']
|
12
12
|
|
13
13
|
gem.description = <<-DESC
|
14
|
-
DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
-
dependencies (
|
14
|
+
==DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
+
dependencies (+app.files_dependencies+), and assists with debugging, in
|
16
16
|
RubyMotion project. It looks for 'break', 'requires', and 'provides' commands
|
17
17
|
(it does a *teensy* bit of code analyzing to provide some defaults) to make your
|
18
|
-
RubyMotion
|
18
|
+
RubyMotion +Rakefile+ and +debugger_cmds+ files short and consistent.
|
19
19
|
|
20
|
-
To use, include this gem, and add
|
21
|
-
|
20
|
+
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
21
|
+
+Motion::Project::App.setup+ block. In your source code you can add DBT
|
22
22
|
commands and those will be translated into directives for
|
23
|
-
|
23
|
+
+app.files_dependencies+ and +debugger_cmds+.
|
24
24
|
|
25
|
-
Run
|
25
|
+
Run +rake+ or +rake debug=1+, and off you go!
|
26
26
|
DESC
|
27
27
|
|
28
28
|
gem.summary = 'Keep your Rakefile and debugger_cmds files short and consistent'
|
data/lib/dbt/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dbt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin Thomas-Arnold <colinta@gmail.com>
|
@@ -11,18 +11,18 @@ cert_chain: []
|
|
11
11
|
date: 2014-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
|
-
DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
-
dependencies (
|
14
|
+
==DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
+
dependencies (+app.files_dependencies+), and assists with debugging, in
|
16
16
|
RubyMotion project. It looks for 'break', 'requires', and 'provides' commands
|
17
17
|
(it does a *teensy* bit of code analyzing to provide some defaults) to make your
|
18
|
-
RubyMotion
|
18
|
+
RubyMotion +Rakefile+ and +debugger_cmds+ files short and consistent.
|
19
19
|
|
20
|
-
To use, include this gem, and add
|
21
|
-
|
20
|
+
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
21
|
+
+Motion::Project::App.setup+ block. In your source code you can add DBT
|
22
22
|
commands and those will be translated into directives for
|
23
|
-
|
23
|
+
+app.files_dependencies+ and +debugger_cmds+.
|
24
24
|
|
25
|
-
Run
|
25
|
+
Run +rake+ or +rake debug=1+, and off you go!
|
26
26
|
email:
|
27
27
|
- colinta@gmail.com
|
28
28
|
executables: []
|
@@ -30,7 +30,6 @@ extensions: []
|
|
30
30
|
extra_rdoc_files: []
|
31
31
|
files:
|
32
32
|
- .gitignore
|
33
|
-
- .rdoc_options
|
34
33
|
- LICENSE
|
35
34
|
- README.md
|
36
35
|
- dbt.gemspec
|
data/.rdoc_options
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
--- !ruby/object:RDoc::Options
|
2
|
-
encoding: UTF-8
|
3
|
-
static_path: []
|
4
|
-
rdoc_include:
|
5
|
-
- .
|
6
|
-
charset: UTF-8
|
7
|
-
exclude:
|
8
|
-
hyperlink_all: false
|
9
|
-
line_numbers: false
|
10
|
-
main_page:
|
11
|
-
markup: markdown
|
12
|
-
page_dir:
|
13
|
-
show_hash: false
|
14
|
-
tab_width: 8
|
15
|
-
title:
|
16
|
-
visibility: :protected
|
17
|
-
webcvs:
|