~ubuntu-branches/ubuntu/trusty/cucumber/trusty

« back to all changes in this revision

Viewing changes to examples/i18n/en-lol/lib/basket.rb

  • Committer: Bazaar Package Importer
  • Author(s): Antonio Terceiro
  • Date: 2011-08-14 13:49:11 UTC
  • Revision ID: james.westby@ubuntu.com-20110814134911-9eepde13gulymmfy
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class Basket
 
2
  attr_reader :cukes
 
3
  
 
4
  def initialize(cukes)
 
5
    @cukes = cukes
 
6
  end
 
7
  
 
8
  def take(cukes)
 
9
    @cukes -= cukes
 
10
    cukes
 
11
  end
 
12
end
 
 
b'\\ No newline at end of file'