Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Marin Usalj committed Jun 16, 2012
1 parent 2ca49d3 commit 32d1755
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HACKING.md
Expand Up @@ -20,7 +20,7 @@ require 'bubble-wrap'
When `bubble-wrap` is required it immediately requires `bubble-wrap/loader` which sets up the infrastructure needed to manipulate the `Rakefile` build process. Once that is done we can freely call When `bubble-wrap` is required it immediately requires `bubble-wrap/loader` which sets up the infrastructure needed to manipulate the `Rakefile` build process. Once that is done we can freely call


```ruby ```ruby
BubbleWrap.require 'motion/core**/*.rb' BubbleWrap.require 'motion/core/**/*.rb'
``` ```


`BubbleWrap.require` (or simply `BW.require`) is used to include `BubbleWrap.require` (or simply `BW.require`) is used to include
Expand All @@ -36,7 +36,7 @@ of `BW::Requirement` and thus has access to all it's class methods.
The most common use cases are setting file dependencies: The most common use cases are setting file dependencies:


```ruby ```ruby
BW.require('motion/core**/*.rb') do BW.require('motion/core/**/*.rb') do
file('motion/core/device/screen.rb').depends_on 'motion/core/device.rb' file('motion/core/device/screen.rb').depends_on 'motion/core/device.rb'
end end
``` ```
Expand Down

0 comments on commit 32d1755

Please sign in to comment.