class Transifex::Projects

Constants

CREATE_REQUIRED_PARAMS

Public Class Methods

create(params = {}, options = {}) click to toggle source
# File lib/transifex/projects.rb, line 17
def self.create(params = {}, options = {})
  Projects.new.create(params, options)
  Transifex::Project.new(params[:slug])
end
fetch() click to toggle source
# File lib/transifex/projects.rb, line 8
def self.fetch
  Transifex::Projects.new.fetch      
end

Public Instance Methods

fetch_with_details() click to toggle source
# File lib/transifex/projects.rb, line 12
def fetch_with_details
  options = {:details => true}
  fetch(options)      
end