Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/jira/mixins.rb

Instance Method Summary collapse

Instance Method Details

#from_jsonObject



48
49
50
# File 'lib/jira/mixins.rb', line 48

def from_json
  JSON.parse(self) rescue {}
end

#periodizeObject



52
53
54
# File 'lib/jira/mixins.rb', line 52

def periodize
  self.strip[-1] == "." ? self : self + "."
end