dbt 1.0.6 → 1.0.7
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 -5
- data/lib/dbt/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90c054c1b0261090c98ea7391db813a6cc6bab25
|
4
|
+
data.tar.gz: 4d82290b822b199920e0c17581261a6919adad6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27d51152e33295c0d1d0872c79af35baf7c4646803a35971efed302147ad2c0359d3041565fd0573883a4383e29346c116f87861924b14bbc84bef018d5fb8cf
|
7
|
+
data.tar.gz: 4235ce0b494bd539e18d41c2ec189836990af283be5f35da8c48c296a88e14c6c580df4109d70b7382523402a94d6aa29520030af863735569ac8023ccf8162d
|
data/dbt.gemspec
CHANGED
@@ -11,11 +11,13 @@ 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)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
14
|
+
== DBT (Dependencies and deBugging Tool)
|
15
|
+
|
16
|
+
DBT is a tool that helps declare dependencies (+app.files_dependencies+) and
|
17
|
+
assists with debugging in a RubyMotion project. It looks for 'break',
|
18
|
+
'requires', and 'provides' commands (it does a *teensy* bit of code analyzing to
|
19
|
+
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
20
|
+
files short and consistent.
|
19
21
|
|
20
22
|
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
21
23
|
<tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
|
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.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin Thomas-Arnold <colinta@gmail.com>
|
@@ -11,11 +11,13 @@ 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)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
14
|
+
== DBT (Dependencies and deBugging Tool)
|
15
|
+
|
16
|
+
DBT is a tool that helps declare dependencies (+app.files_dependencies+) and
|
17
|
+
assists with debugging in a RubyMotion project. It looks for 'break',
|
18
|
+
'requires', and 'provides' commands (it does a *teensy* bit of code analyzing to
|
19
|
+
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
20
|
+
files short and consistent.
|
19
21
|
|
20
22
|
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
21
23
|
<tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
|