Sha256: 5220dfbc129234ed41208c864e77d6d980f05d46d3ac0c4126f33b383ef36f4f

Contents?: true

Size: 448 Bytes

Versions: 2

Compression:

Stored size: 448 Bytes

Contents

buoy :account do
  link :account, 'http://example.com/account'
end

buoy :books do
  link 'Books', 'http://example.com/books'
end

buoy :show_books do |number|
  parent :books
  link "show-#{number}", "http://example.com/books/#{number}", link_current: true
end

buoy :edit_book_author do |book_id, author_id|
  parent :books
  link "edit-#{book_id}-#{author_id}", "http://example.com/books/#{book_id}/authors/#{author_id}", link_current: true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
buoys-0.3.0 test/dummy/config/buoys/buoys.rb
buoys-0.2.0 test/dummy/config/buoys/buoys.rb