class Prefinery::Beta

List betas

Prefinery::Beta.find(:all)

Show a single beta

beta = Prefinery::Beta.find(1)

List testers

beta.testers

Find a tester by email

beta.testers(:email => 'justin@prefinery.com')

Public Instance Methods

testers(options = {}) click to toggle source
# File lib/prefinery.rb, line 80
def testers(options = {})
  Tester.find(:all, :params => options.update(:beta_id => id))
end