README.md in sqed-0.8.2 vs README.md in sqed-0.8.3

- old
+ new

@@ -21,9 +21,25 @@ ## Usage For the time being, see specs. +## Experiment with irb + +```Ruby +require 'sqed' + + +i = Magick::Image.read(File.expand_path('~/Downloads/') + '/img_0129.jpg').first +s = Sqed.new( image: i, pattern: :lep_stage, boundary_color: :red, has_border: false ) +r = s.result +r.write_images # => ./temp/*.jpg + +# Without thumbnail +s = Sqed.new( image: i, pattern: :lep_stage, boundary_color: :red, has_border: false, use_thumbnail: false ) + +``` + ## Contributing 1. Fork it ( http://github.com/SpeciesFileGroup/sqed/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`)