dbt 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rdoc_options +17 -0
- data/dbt.gemspec +5 -5
- data/lib/dbt/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a25c469c2f3db30a08ff9be79e8ab0a0fb4160c2
|
4
|
+
data.tar.gz: 32c251544347636f253b0551178f258b486fab29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c367d2dccfae8d64a74618eec43290eb7de2fafded487776c565f3fd5c23a692230e401ea0dec021eba97c38b681f4a50d34b8bf4bceb75593e0388404704c20
|
7
|
+
data.tar.gz: e29f44e2f7fe9c84abe72eb62f2c423e1b342469b0c65ce42faa4aa4ce845368e93ba25b35c9ed67f80b534a949d468ef32d2358fcef907754e1dff0a08cb9d9
|
data/.rdoc_options
ADDED
@@ -0,0 +1,17 @@
|
|
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:
|
data/dbt.gemspec
CHANGED
@@ -12,17 +12,17 @@ Gem::Specification.new do |gem|
|
|
12
12
|
|
13
13
|
gem.description = <<-DESC
|
14
14
|
DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
-
dependencies (
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin Thomas-Arnold <colinta@gmail.com>
|
@@ -12,17 +12,17 @@ date: 2014-03-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
DBT (Dependencies and deBugging Tool) is a tool that helps declare and declare
|
15
|
-
dependencies (
|
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,6 +30,7 @@ extensions: []
|
|
30
30
|
extra_rdoc_files: []
|
31
31
|
files:
|
32
32
|
- .gitignore
|
33
|
+
- .rdoc_options
|
33
34
|
- LICENSE
|
34
35
|
- README.md
|
35
36
|
- dbt.gemspec
|