README.md in animoto-0.1.1.beta1 vs README.md in animoto-1.0.0

- old
+ new

@@ -33,18 +33,18 @@ ### Installation You can install the Animoto API Ruby Client either through [RubyGems](http://rubygems.org): - gem install animoto -v 0.1.0.alpha0 --pre + gem install animoto Or by cloning [the repository](http://github.com/animoto/animoto_api_client_ruby) on [GitHub](http://github.com/) and building it from source: git clone git://github.com/animoto/animoto_api_client_ruby.git cd animoto_api_client_ruby gem build animoto.gemspec - gem install animoto-0.1.0.alpha0.gem + gem install animoto-1.0.0.gem ### Prerequisites #### Readers of this document should be familiar with... @@ -100,11 +100,10 @@ # create a directing and rendering manifest with the video title and # producer. Also include rendering parameters like resolution, framerate, # and format. manifest = Manifests::DirectingAndRendering.new( :title => "Amazing Title!", - :producer => "Fishy Joe", :resolution => "720p", :framerate => 24, :format => 'h264' ) @@ -165,10 +164,15 @@ # associated with this job. if storyboard = directing_job.storyboard # Now it's time to render the storyboard into a video. First we create # a rendering manifest. - manifest = Manifests::Rendering.new(storyboard, :resolution => "720p", :framerate => 24, :format => 'h264') + manifest = Manifests::Rendering.new( + storyboard, + :resolution => "720p", + :framerate => 24, + :format => 'h264' + ) # Send the manifest to the API. rendering_job = client.render!(manifest) # Poll the service until the rendering job is done