dbt 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dbt.gemspec +5 -7
- data/lib/dbt/version.rb +1 -1
- metadata +6 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe95bd33d4056f0a3276cc6fa3d4886983aadbe9
|
4
|
+
data.tar.gz: 0cfa1968562b250e46abe0f55db89668815eac4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ab7e3df13f7190c8fbaf9b21a6b4f09f01115c3fdce9107a33da9d2812924fdfdcc0a3d790954ebe96409c71a9c1a3322399badaae7c32c552299a8458d43ec
|
7
|
+
data.tar.gz: 10bc62e1b213b6e0e91623b26ce5daec88909b924aa7d5f41b26635a50ef3607531343695ba452aeabff79f675067e3ce94cc4a9bee75a7f56e87374c83864de
|
data/dbt.gemspec
CHANGED
@@ -11,13 +11,11 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.email = ['colinta@gmail.com']
|
12
12
|
|
13
13
|
gem.description = <<-DESC
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
20
|
-
files short and consistent.
|
14
|
+
DBT (Dependencies and deBugging Tool) is a tool that helps declare dependencies
|
15
|
+
(+app.files_dependencies+) and assists with debugging in a RubyMotion project.
|
16
|
+
It looks for 'break', 'requires', and 'provides' commands (it does a *teensy*
|
17
|
+
bit of code analyzing to provide some defaults) to make your RubyMotion
|
18
|
+
+Rakefile+ and +debugger_cmds+ files short and consistent.
|
21
19
|
|
22
20
|
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
23
21
|
<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.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin Thomas-Arnold <colinta@gmail.com>
|
@@ -11,13 +11,11 @@ cert_chain: []
|
|
11
11
|
date: 2014-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
provide some defaults) to make your RubyMotion +Rakefile+ and +debugger_cmds+
|
20
|
-
files short and consistent.
|
14
|
+
DBT (Dependencies and deBugging Tool) is a tool that helps declare dependencies
|
15
|
+
(+app.files_dependencies+) and assists with debugging in a RubyMotion project.
|
16
|
+
It looks for 'break', 'requires', and 'provides' commands (it does a *teensy*
|
17
|
+
bit of code analyzing to provide some defaults) to make your RubyMotion
|
18
|
+
+Rakefile+ and +debugger_cmds+ files short and consistent.
|
21
19
|
|
22
20
|
To use, include this gem, and add +app.analyze+ to your +Rakefile+ in the
|
23
21
|
<tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
|