dbt 1.0.1 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba0d20d40791a30281a1cce9203f8ef3a71d6b40
4
- data.tar.gz: c1b08781b94cd138b585eac23249d6931fd4adfa
3
+ metadata.gz: a25c469c2f3db30a08ff9be79e8ab0a0fb4160c2
4
+ data.tar.gz: 32c251544347636f253b0551178f258b486fab29
5
5
  SHA512:
6
- metadata.gz: 20f2a652a047a8a6f55b3b9c61f80f2179803ab78cae33f6c91cc2676150c6b1dd5d17268097aa342ea9d546c44f181859282fdef944e6a83233dc676932b45b
7
- data.tar.gz: 1962914e6fc130400df9a7409cda178173bd40f572836196e601929b2fbf115c7a08745f82e9034e7d161a333accabce3acbe66366be9d32c6666f349c17965d
6
+ metadata.gz: c367d2dccfae8d64a74618eec43290eb7de2fafded487776c565f3fd5c23a692230e401ea0dec021eba97c38b681f4a50d34b8bf4bceb75593e0388404704c20
7
+ data.tar.gz: e29f44e2f7fe9c84abe72eb62f2c423e1b342469b0c65ce42faa4aa4ce845368e93ba25b35c9ed67f80b534a949d468ef32d2358fcef907754e1dff0a08cb9d9
@@ -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:
@@ -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 (+app.files_dependencies+), and assists with debugging, in
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 +Rakefile+ and +debugger_cmds+ files short and consistent.
18
+ RubyMotion `Rakefile` and `debugger_cmds` files short and consistent.
19
19
 
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
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 +rake+ or +rake debug=1+, and off you go!
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'
@@ -1,3 +1,3 @@
1
1
  module DBT
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
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.1
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 (+app.files_dependencies+), and assists with debugging, in
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 +Rakefile+ and +debugger_cmds+ files short and consistent.
18
+ RubyMotion `Rakefile` and `debugger_cmds` files short and consistent.
19
19
 
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
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 +rake+ or +rake debug=1+, and off you go!
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