Class: Eztexting::Availability
- Defined in:
- lib/eztexting/availablity.rb
Class Method Summary collapse
-
.check(keyword) ⇒ Array
Check the availablity of a keyword.
Methods inherited from Base
Class Method Details
.check(keyword) ⇒ Array
Check the availablity of a keyword
7 8 9 10 11 12 13 14 15 |
# File 'lib/eztexting/availablity.rb', line 7 def self.check(keyword) location = "/keyword/check/" = {:keyword => keyword} response = self.do_post(location,) response_result = self.process(response) return self.processed_reponse(response_result,response) end |