README.md in pretty_feed-0.1.0 vs README.md in pretty_feed-0.1.1
- old
+ new
@@ -20,13 +20,13 @@
```ruby
namespace :scrub do
task :blurb => :environment do |_t, _args|
include PrettyFeed::PfTf.new(truthy: 'green', falsey: 'blue')
- pf("this will be green", true)
+ pftf("this will be green", true)
# => "this will be green" # in the console
- pf("this will be blue", false)
+ pftf("this will be blue", false)
# => "this will be blue" # in the console
end
end
```
@@ -34,10 +34,10 @@
```ruby
namespace :scrub do
task :blurb => :environment do |_t, someth|
include PrettyFeed::PfTf.new(truthy: 'green', falsey: 'blue')
- pf("might be green or blue", someth, ->(a) { a })
+ pftf("might be green or blue", someth, ->(a) { a })
# => the color will depend on what someth is and how the proc evaluates it.
end
end
```
\ No newline at end of file