dbt 1.0.4 → 1.0.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/dbt.gemspec +9 -7
  3. data/lib/dbt/version.rb +1 -1
  4. metadata +10 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 64616ec52a7eb74d2b5c7830ffa8af85d04b39ee
4
- data.tar.gz: 74af11dc1bc1ace5341347dbc69f34c08cacae19
3
+ metadata.gz: f2286d01ed70d9c190a1580b2759ce5527b21eda
4
+ data.tar.gz: 878ad8f8b20c30a406238c307842b310a4b50710
5
5
  SHA512:
6
- metadata.gz: 1ad760bf794ce28effe1b23c4ecda613314a4439a9dfb8f6d98ddaf2b68de822e1494b64693b34a1d811de7ae1cfe4e3b171fcaa77786318c74e8d24e51fb482
7
- data.tar.gz: 325ed9df9a7e9fa233afc4f822b61e1f4562d2673a897bcb8ebe7ea792e86065ce7a0c9d97c11d021ce662c709cc9a3578377f89f909763043d3d46403304632
6
+ metadata.gz: f39adf42b7e548d6fb8d8451aa98e6edb2cf35b61bef6e6e3f96a65adce5bb044740f92f0526e9d433debe5c70e008763727fc477557930485a9ad7d9d6f3d39
7
+ data.tar.gz: 8e6fb02d50ac868c844512bcd4beef06f878516c0868364b733ec3bc4ff5a379495c7a036a983002197aaeec6fff360d63f9d44c4f75b118d7aca1bd5959062b
data/dbt.gemspec CHANGED
@@ -11,18 +11,20 @@ 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 (+app.files_dependencies+), and assists with debugging, in
16
- RubyMotion project. It looks for 'break', 'requires', and 'provides' commands
17
- (it does a *teensy* bit of code analyzing to provide some defaults) to make your
18
- RubyMotion +Rakefile+ and +debugger_cmds+ files short and consistent.
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
- +Motion::Project::App.setup+ block. In your source code you can add DBT
23
+ <tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
22
24
  commands and those will be translated into directives for
23
25
  +app.files_dependencies+ and +debugger_cmds+.
24
26
 
25
- Run +rake+ or +rake debug=1+, and off you go!
27
+ Run +rake+ or <tt>rake debug=1</tt>, and off you go!
26
28
  DESC
27
29
 
28
30
  gem.summary = 'Keep your Rakefile and debugger_cmds files short and consistent'
data/lib/dbt/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DBT
2
- VERSION = '1.0.4'
2
+ VERSION = '1.0.5'
3
3
  end
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
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Colin Thomas-Arnold <colinta@gmail.com>
@@ -11,18 +11,20 @@ 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 (+app.files_dependencies+), and assists with debugging, in
16
- RubyMotion project. It looks for 'break', 'requires', and 'provides' commands
17
- (it does a *teensy* bit of code analyzing to provide some defaults) to make your
18
- RubyMotion +Rakefile+ and +debugger_cmds+ files short and consistent.
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
- +Motion::Project::App.setup+ block. In your source code you can add DBT
23
+ <tt>Motion::Project::App.setup</tt> block. In your source code you can add DBT
22
24
  commands and those will be translated into directives for
23
25
  +app.files_dependencies+ and +debugger_cmds+.
24
26
 
25
- Run +rake+ or +rake debug=1+, and off you go!
27
+ Run +rake+ or <tt>rake debug=1</tt>, and off you go!
26
28
  email:
27
29
  - colinta@gmail.com
28
30
  executables: []