Module: Particle::Client::Libraries
- Defined in:
- lib/particle/client/library.rb
Overview
Client methods for the Particle firmware library API
Instance Method Summary collapse
-
#library(target) ⇒ Library
Create a domain model for a firmware library.
Instance Method Details
#library(target) ⇒ Library
Create a domain model for a firmware library
15 16 17 18 19 20 21 |
# File 'lib/particle/client/library.rb', line 15 def library(target) if target.is_a? Library target else Library.new(self, target) end end |