dealer 0.0.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.
- data/README.rdoc +38 -0
 - data/Rakefile +66 -0
 - data/lib/dealer.rb +3 -0
 - data/lib/dealer/version.rb +13 -0
 - data/test/test_helper.rb +8 -0
 - data/test/unit/dealer_test.rb +13 -0
 - metadata +152 -0
 
    
        data/README.rdoc
    ADDED
    
    | 
         @@ -0,0 +1,38 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            = Dealer
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            == Description
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Describe your gem here ... 
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            == Installation
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
                sudo gem install dealer
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            == Usage
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
                require 'dealer'
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            == License
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            Copyright (c) <year> <copyright holders>
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person
         
     | 
| 
      
 20 
     | 
    
         
            +
            obtaining a copy of this software and associated documentation
         
     | 
| 
      
 21 
     | 
    
         
            +
            files (the "Software"), to deal in the Software without
         
     | 
| 
      
 22 
     | 
    
         
            +
            restriction, including without limitation the rights to use,
         
     | 
| 
      
 23 
     | 
    
         
            +
            copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 24 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the
         
     | 
| 
      
 25 
     | 
    
         
            +
            Software is furnished to do so, subject to the following
         
     | 
| 
      
 26 
     | 
    
         
            +
            conditions:
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be
         
     | 
| 
      
 29 
     | 
    
         
            +
            included in all copies or substantial portions of the Software.
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         
     | 
| 
      
 32 
     | 
    
         
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
         
     | 
| 
      
 33 
     | 
    
         
            +
            OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         
     | 
| 
      
 34 
     | 
    
         
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
         
     | 
| 
      
 35 
     | 
    
         
            +
            HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
         
     | 
| 
      
 36 
     | 
    
         
            +
            WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
         
     | 
| 
      
 37 
     | 
    
         
            +
            FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
         
     | 
| 
      
 38 
     | 
    
         
            +
            OTHER DEALINGS IN THE SOFTWARE.
         
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1,66 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'rake/gempackagetask'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'rake/testtask'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            require File.join(File.dirname(__FILE__), %w(lib dealer version))
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            spec = Gem::Specification.new do |s|
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.name             = 'dealer'
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.version          = Dealer::Version.to_s
         
     | 
| 
      
 10 
     | 
    
         
            +
              s.has_rdoc         = true
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.extra_rdoc_files = %w(README.rdoc)
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.rdoc_options     = %w(--main README.rdoc)
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.summary          = "First hit is free"
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.author           = 'Patrick Reagan'
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.email            = 'reaganpr@gmail.com'
         
     | 
| 
      
 16 
     | 
    
         
            +
              s.homepage         = 'http://sneaq.net'
         
     | 
| 
      
 17 
     | 
    
         
            +
              s.files            = %w(README.rdoc Rakefile) + Dir.glob("{lib,test}/**/*")
         
     | 
| 
      
 18 
     | 
    
         
            +
              # s.executables    = ['dealer']
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
              # s.add_dependency('gem_name', '~> 0.0.1')
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              s.add_development_dependency('rake', '~> 0.8.0')
         
     | 
| 
      
 23 
     | 
    
         
            +
              s.add_development_dependency('bundler', '~> 1.0.0')
         
     | 
| 
      
 24 
     | 
    
         
            +
              s.add_development_dependency('jnunemaker-matchy', '~> 0.4.0')
         
     | 
| 
      
 25 
     | 
    
         
            +
              s.add_development_dependency('shoulda', '~> 2.11.0')
         
     | 
| 
      
 26 
     | 
    
         
            +
              s.add_development_dependency('mocha', '~> 0.9.0')
         
     | 
| 
      
 27 
     | 
    
         
            +
            end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            Rake::GemPackageTask.new(spec) do |pkg|
         
     | 
| 
      
 30 
     | 
    
         
            +
              pkg.gem_spec = spec
         
     | 
| 
      
 31 
     | 
    
         
            +
            end
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            Rake::TestTask.new do |t|
         
     | 
| 
      
 34 
     | 
    
         
            +
              t.libs << 'test'
         
     | 
| 
      
 35 
     | 
    
         
            +
              t.test_files = FileList["test/**/*_test.rb"]
         
     | 
| 
      
 36 
     | 
    
         
            +
              t.verbose = true
         
     | 
| 
      
 37 
     | 
    
         
            +
            end
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            begin
         
     | 
| 
      
 40 
     | 
    
         
            +
              require 'rcov/rcovtask'
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
              exclude_paths  = %w(/Library/Ruby /usr/lib/ruby)
         
     | 
| 
      
 43 
     | 
    
         
            +
              exclude_paths += Array(Gem.path)
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
              options = ['--text-report'] + exclude_paths.map {|p| "-x '#{p}'" }
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
              Rcov::RcovTask.new(:coverage) do |t|
         
     | 
| 
      
 48 
     | 
    
         
            +
                t.libs       = ['test']
         
     | 
| 
      
 49 
     | 
    
         
            +
                t.test_files = FileList["test/**/*_test.rb"]
         
     | 
| 
      
 50 
     | 
    
         
            +
                t.verbose    = true
         
     | 
| 
      
 51 
     | 
    
         
            +
                t.rcov_opts  = options
         
     | 
| 
      
 52 
     | 
    
         
            +
              end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
              task :default => :coverage
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            rescue LoadError
         
     | 
| 
      
 57 
     | 
    
         
            +
              warn "\n**** Install rcov (gem install rcov) to get coverage stats ****\n"
         
     | 
| 
      
 58 
     | 
    
         
            +
              task :default => :test
         
     | 
| 
      
 59 
     | 
    
         
            +
            end
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            desc 'Generate the gemspec for this Gem'
         
     | 
| 
      
 62 
     | 
    
         
            +
            task :gemspec do
         
     | 
| 
      
 63 
     | 
    
         
            +
              file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
         
     | 
| 
      
 64 
     | 
    
         
            +
              File.open(file, 'w') {|f| f << spec.to_ruby }
         
     | 
| 
      
 65 
     | 
    
         
            +
              puts "Created gemspec: #{file}"
         
     | 
| 
      
 66 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/dealer.rb
    ADDED
    
    
    
        data/test/test_helper.rb
    ADDED
    
    
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require File.expand_path(File.join(File.dirname(__FILE__), %w(.. test_helper)))
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            class DealerTest < Test::Unit::TestCase
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
              context "An instance of the Dealer class" do
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
                should "flunk" do
         
     | 
| 
      
 8 
     | 
    
         
            +
                  flunk "Please provide some tests"
         
     | 
| 
      
 9 
     | 
    
         
            +
                end
         
     | 
| 
      
 10 
     | 
    
         
            +
                
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,152 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: dealer
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 31
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 6 
     | 
    
         
            +
              segments: 
         
     | 
| 
      
 7 
     | 
    
         
            +
              - 0
         
     | 
| 
      
 8 
     | 
    
         
            +
              - 0
         
     | 
| 
      
 9 
     | 
    
         
            +
              - 0
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 0.0.0
         
     | 
| 
      
 11 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 12 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 13 
     | 
    
         
            +
            - Patrick Reagan
         
     | 
| 
      
 14 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 16 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2010-11-21 00:00:00 -07:00
         
     | 
| 
      
 19 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 20 
     | 
    
         
            +
            dependencies: 
         
     | 
| 
      
 21 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 22 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 23 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 24 
     | 
    
         
            +
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 25 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 26 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 27 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 29 
     | 
    
         
            +
                    hash: 63
         
     | 
| 
      
 30 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 31 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 32 
     | 
    
         
            +
                    - 8
         
     | 
| 
      
 33 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 34 
     | 
    
         
            +
                    version: 0.8.0
         
     | 
| 
      
 35 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: *id001
         
     | 
| 
      
 37 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 38 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 39 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 40 
     | 
    
         
            +
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 41 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 42 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 43 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 45 
     | 
    
         
            +
                    hash: 23
         
     | 
| 
      
 46 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 47 
     | 
    
         
            +
                    - 1
         
     | 
| 
      
 48 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 49 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 50 
     | 
    
         
            +
                    version: 1.0.0
         
     | 
| 
      
 51 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 52 
     | 
    
         
            +
              version_requirements: *id002
         
     | 
| 
      
 53 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 54 
     | 
    
         
            +
              name: jnunemaker-matchy
         
     | 
| 
      
 55 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 56 
     | 
    
         
            +
              requirement: &id003 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 57 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 61 
     | 
    
         
            +
                    hash: 15
         
     | 
| 
      
 62 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 63 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 64 
     | 
    
         
            +
                    - 4
         
     | 
| 
      
 65 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 66 
     | 
    
         
            +
                    version: 0.4.0
         
     | 
| 
      
 67 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 68 
     | 
    
         
            +
              version_requirements: *id003
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: shoulda
         
     | 
| 
      
 71 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 72 
     | 
    
         
            +
              requirement: &id004 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 73 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 74 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 75 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 76 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 77 
     | 
    
         
            +
                    hash: 35
         
     | 
| 
      
 78 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 79 
     | 
    
         
            +
                    - 2
         
     | 
| 
      
 80 
     | 
    
         
            +
                    - 11
         
     | 
| 
      
 81 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: 2.11.0
         
     | 
| 
      
 83 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 84 
     | 
    
         
            +
              version_requirements: *id004
         
     | 
| 
      
 85 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 86 
     | 
    
         
            +
              name: mocha
         
     | 
| 
      
 87 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 88 
     | 
    
         
            +
              requirement: &id005 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 89 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 90 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 91 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 93 
     | 
    
         
            +
                    hash: 59
         
     | 
| 
      
 94 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 95 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 96 
     | 
    
         
            +
                    - 9
         
     | 
| 
      
 97 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 98 
     | 
    
         
            +
                    version: 0.9.0
         
     | 
| 
      
 99 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 100 
     | 
    
         
            +
              version_requirements: *id005
         
     | 
| 
      
 101 
     | 
    
         
            +
            description: 
         
     | 
| 
      
 102 
     | 
    
         
            +
            email: reaganpr@gmail.com
         
     | 
| 
      
 103 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            extra_rdoc_files: 
         
     | 
| 
      
 108 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 109 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 110 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 111 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 112 
     | 
    
         
            +
            - lib/dealer/version.rb
         
     | 
| 
      
 113 
     | 
    
         
            +
            - lib/dealer.rb
         
     | 
| 
      
 114 
     | 
    
         
            +
            - test/test_helper.rb
         
     | 
| 
      
 115 
     | 
    
         
            +
            - test/unit/dealer_test.rb
         
     | 
| 
      
 116 
     | 
    
         
            +
            has_rdoc: true
         
     | 
| 
      
 117 
     | 
    
         
            +
            homepage: http://sneaq.net
         
     | 
| 
      
 118 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 121 
     | 
    
         
            +
            rdoc_options: 
         
     | 
| 
      
 122 
     | 
    
         
            +
            - --main
         
     | 
| 
      
 123 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 124 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 125 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 126 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 127 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 128 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 129 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 130 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 131 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 132 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 133 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 134 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 135 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 136 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 137 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 138 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 139 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 140 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 141 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 143 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 144 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 147 
     | 
    
         
            +
            rubygems_version: 1.3.7
         
     | 
| 
      
 148 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 149 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 150 
     | 
    
         
            +
            summary: First hit is free
         
     | 
| 
      
 151 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     |