dbt 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/dbt.gemspec +5 -7
  3. data/lib/dbt/version.rb +1 -1
  4. metadata +6 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2286d01ed70d9c190a1580b2759ce5527b21eda
4
- data.tar.gz: 878ad8f8b20c30a406238c307842b310a4b50710
3
+ metadata.gz: fe95bd33d4056f0a3276cc6fa3d4886983aadbe9
4
+ data.tar.gz: 0cfa1968562b250e46abe0f55db89668815eac4b
5
5
  SHA512:
6
- metadata.gz: f39adf42b7e548d6fb8d8451aa98e6edb2cf35b61bef6e6e3f96a65adce5bb044740f92f0526e9d433debe5c70e008763727fc477557930485a9ad7d9d6f3d39
7
- data.tar.gz: 8e6fb02d50ac868c844512bcd4beef06f878516c0868364b733ec3bc4ff5a379495c7a036a983002197aaeec6fff360d63f9d44c4f75b118d7aca1bd5959062b
6
+ metadata.gz: 6ab7e3df13f7190c8fbaf9b21a6b4f09f01115c3fdce9107a33da9d2812924fdfdcc0a3d790954ebe96409c71a9c1a3322399badaae7c32c552299a8458d43ec
7
+ data.tar.gz: 10bc62e1b213b6e0e91623b26ce5daec88909b924aa7d5f41b26635a50ef3607531343695ba452aeabff79f675067e3ce94cc4a9bee75a7f56e87374c83864de
@@ -11,13 +11,11 @@ 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
- 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.
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
@@ -1,3 +1,3 @@
1
1
  module DBT
2
- VERSION = '1.0.5'
2
+ VERSION = '1.0.6'
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.5
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
- == 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.
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