rtorrent_xmlrpc 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/Gemfile.lock +1 -1
 - data/bin/rtorrent_xmlrpc +5 -1
 - data/lib/rtorrent_xmlrpc/torrent.rb +125 -0
 - data/lib/rtorrent_xmlrpc/xmlrpc.rb +140 -0
 - data/lib/rtorrent_xmlrpc.rb +1 -234
 - data/methods.txt +1113 -0
 - data/rtorrent_xmlrpc.gemspec +2 -1
 - metadata +5 -2
 
    
        data/rtorrent_xmlrpc.gemspec
    CHANGED
    
    | 
         @@ -1,8 +1,9 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       2 
2 
     | 
    
         
             
              s.name        = 'rtorrent_xmlrpc'
         
     | 
| 
       3 
     | 
    
         
            -
              s.version     = '0. 
     | 
| 
      
 3 
     | 
    
         
            +
              s.version     = '0.2.0'
         
     | 
| 
       4 
4 
     | 
    
         
             
              s.date        = '2015-07-03'
         
     | 
| 
       5 
5 
     | 
    
         
             
              s.summary     = 'A library and tool to query an rtorrent xmlrpc service.'
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.description = 'This is a library to get torrent information from a remote rtorrent server.'
         
     | 
| 
       6 
7 
     | 
    
         
             
              s.authors     = ['Zan Loy']
         
     | 
| 
       7 
8 
     | 
    
         
             
              s.email       = 'zan.loy@gmail.com'
         
     | 
| 
       8 
9 
     | 
    
         
             
              s.homepage    = 'http://zanloy.com/ruby/rtorrent_xmlrpc/'
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: rtorrent_xmlrpc
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Zan Loy
         
     | 
| 
         @@ -90,7 +90,7 @@ dependencies: 
     | 
|
| 
       90 
90 
     | 
    
         
             
                - - ">="
         
     | 
| 
       91 
91 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       92 
92 
     | 
    
         
             
                    version: 0.19.1
         
     | 
| 
       93 
     | 
    
         
            -
            description: 
         
     | 
| 
      
 93 
     | 
    
         
            +
            description: This is a library to get torrent information from a remote rtorrent server.
         
     | 
| 
       94 
94 
     | 
    
         
             
            email: zan.loy@gmail.com
         
     | 
| 
       95 
95 
     | 
    
         
             
            executables:
         
     | 
| 
       96 
96 
     | 
    
         
             
            - rtorrent_xmlrpc
         
     | 
| 
         @@ -102,6 +102,9 @@ files: 
     | 
|
| 
       102 
102 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       103 
103 
     | 
    
         
             
            - bin/rtorrent_xmlrpc
         
     | 
| 
       104 
104 
     | 
    
         
             
            - lib/rtorrent_xmlrpc.rb
         
     | 
| 
      
 105 
     | 
    
         
            +
            - lib/rtorrent_xmlrpc/torrent.rb
         
     | 
| 
      
 106 
     | 
    
         
            +
            - lib/rtorrent_xmlrpc/xmlrpc.rb
         
     | 
| 
      
 107 
     | 
    
         
            +
            - methods.txt
         
     | 
| 
       105 
108 
     | 
    
         
             
            - rtorrent_xmlrpc.conf.sample
         
     | 
| 
       106 
109 
     | 
    
         
             
            - rtorrent_xmlrpc.gemspec
         
     | 
| 
       107 
110 
     | 
    
         
             
            homepage: http://zanloy.com/ruby/rtorrent_xmlrpc/
         
     |