Method: Container::Torrent#seeders
- Defined in:
- lib/torrents/container.rb
#seeders ⇒ Object
Returns the amount of seeders for the current torrent If the seeder-tag isn’t found, the value one (1) will be returned. Returns an integer from 0 to inf
135 136 137 |
# File 'lib/torrents/container.rb', line 135 def seeders @seeders ||= self.inner_call(:seeders, self.content).to_i end |