# PicturehouseUk A simple gem to parse the [Picturehouse Cinemas UK website](http://picturehouses.com) and spit out useful formatted info. [![Gem Version](https://badge.fury.io/rb/picturehouse_uk.png)](http://badge.fury.io/rb/picturehouse_uk) [![Code Climate](https://codeclimate.com/github/andycroll/picturehouse_uk.png)](https://codeclimate.com/github/andycroll/picturehouse_uk) [![Build Status](https://travis-ci.org/andycroll/picturehouse_uk.png?branch=master)](https://travis-ci.org/andycroll/picturehouse_uk) [![Inline docs](http://inch-ci.org/github/andycroll/picturehouse_uk.png)](http://inch-ci.org/github/andycroll/picturehouse_uk) ## Installation Add this line to your application's Gemfile: gem 'picturehouse_uk' And then execute: $ bundle Or install it yourself as: $ gem install picturehouse_uk ## Usage ### Cinema ``` ruby PicturehouseUK::Cinema.all #=> [ , , ... ] PicturehouseUK::Cinema.find('Duke_Of_Yorks') #=> cinema.brand #=> 'Picturehouse' cinema.chain_id #=> 'Duke_Of_Yorks' cinema.url #=> "http://www.picturehouses.co.uk/cinema/Duke_Of_Yorks/" cinema.films #=> [, ] cinema.screenings #=> [, , , ] ``` ## Running Tests To redownload the test URLs run ``` ruby test/fixture_updater.rb ``` ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request