dbt 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/dbt.gemspec +1 -1
- data/lib/dbt/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bba557c498d79c32a182b797644a88c4f646b5e8
|
|
4
|
+
data.tar.gz: 16954fb22aa547fdbf93f0d78c063df2f8524534
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5553bc8f890fa582c427516872b0a976ab972968aab7e5b5511ee1513fa92b6ff29ae5e2d4e8af50b3e3b6641d184c5e2f8cdcea1965a41c842546b96a60d90e
|
|
7
|
+
data.tar.gz: 2683b9a49e18bfd2b85f7128cb55a07f84e0623805d852e60f316d731ba4edcc384f5b8d054f7ecbc982b7b59434952e742bcda9760be96990a55fb2b83e3bbc
|
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ it will detect VERY basic class and module declarations) to make your RubyMotion
|
|
|
8
8
|
|
|
9
9
|
**CAUTION**: It overwrites the `debugger_cmds` file!
|
|
10
10
|
|
|
11
|
-
To use, include this gem (`gem '
|
|
11
|
+
To use, include this gem (`gem 'dbt'`), and add `DBT.analyze(app)` to your
|
|
12
12
|
`Rakefile`, after you have added your libraries and whatnot. It looks at
|
|
13
13
|
`app.files` and scans those files, so I mean it when I say "after you have added
|
|
14
14
|
your libraries and whatnot". In your source code you add DBT commands:
|
data/dbt.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ assists with debugging in a RubyMotion project. It looks for 'break',
|
|
|
19
19
|
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
|
20
20
|
files short and consistent.
|
|
21
21
|
|
|
22
|
-
To use, include this gem, and add +
|
|
22
|
+
To use, include this gem, and add +DBT.analyze(app)+ to your +Rakefile+ in the
|
|
23
23
|
<tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
|
|
24
24
|
commands and those will be translated into directives for
|
|
25
25
|
+app.files_dependencies+ and +debugger_cmds+.
|
data/lib/dbt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dbt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Colin Thomas-Arnold <colinta@gmail.com>
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
== DBT (Dependencies and deBugging Tool)
|
|
@@ -19,7 +19,7 @@ description: |
|
|
|
19
19
|
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
|
20
20
|
files short and consistent.
|
|
21
21
|
|
|
22
|
-
To use, include this gem, and add +
|
|
22
|
+
To use, include this gem, and add +DBT.analyze(app)+ to your +Rakefile+ in the
|
|
23
23
|
<tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
|
|
24
24
|
commands and those will be translated into directives for
|
|
25
25
|
+app.files_dependencies+ and +debugger_cmds+.
|
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
59
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 2.0.
|
|
60
|
+
rubygems_version: 2.0.14
|
|
61
61
|
signing_key:
|
|
62
62
|
specification_version: 4
|
|
63
63
|
summary: Keep your Rakefile and debugger_cmds files short and consistent
|