indexotron 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/.document +5 -0
 - data/.gitignore +21 -0
 - data/LICENSE +20 -0
 - data/README.rdoc +17 -0
 - data/Rakefile +55 -0
 - data/VERSION +1 -0
 - data/bin/ndxo +4 -0
 - data/indexotron.gemspec +66 -0
 - data/lib/indexotron.rb +8 -0
 - data/lib/indexotron/runner.rb +80 -0
 - data/test/helper.rb +10 -0
 - data/test/test_indexotron.rb +6 -0
 - data/test/test_runner.rb +11 -0
 - metadata +127 -0
 
    
        data/.document
    ADDED
    
    
    
        data/.gitignore
    ADDED
    
    
    
        data/LICENSE
    ADDED
    
    | 
         @@ -0,0 +1,20 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Copyright (c) 2009 j05h
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining
         
     | 
| 
      
 4 
     | 
    
         
            +
            a copy of this software and associated documentation files (the
         
     | 
| 
      
 5 
     | 
    
         
            +
            "Software"), to deal in the Software without restriction, including
         
     | 
| 
      
 6 
     | 
    
         
            +
            without limitation the rights to use, copy, modify, merge, publish,
         
     | 
| 
      
 7 
     | 
    
         
            +
            distribute, sublicense, and/or sell copies of the Software, and to
         
     | 
| 
      
 8 
     | 
    
         
            +
            permit persons to whom the Software is furnished to do so, subject to
         
     | 
| 
      
 9 
     | 
    
         
            +
            the following conditions:
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be
         
     | 
| 
      
 12 
     | 
    
         
            +
            included in all copies or substantial portions of the Software.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         
     | 
| 
      
 15 
     | 
    
         
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         
     | 
| 
      
 16 
     | 
    
         
            +
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         
     | 
| 
      
 17 
     | 
    
         
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         
     | 
| 
      
 18 
     | 
    
         
            +
            LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         
     | 
| 
      
 19 
     | 
    
         
            +
            OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         
     | 
| 
      
 20 
     | 
    
         
            +
            WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
     | 
    
        data/README.rdoc
    ADDED
    
    | 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            = indexotron
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Description goes here.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            == Note on Patches/Pull Requests
         
     | 
| 
      
 6 
     | 
    
         
            +
             
         
     | 
| 
      
 7 
     | 
    
         
            +
            * Fork the project.
         
     | 
| 
      
 8 
     | 
    
         
            +
            * Make your feature addition or bug fix.
         
     | 
| 
      
 9 
     | 
    
         
            +
            * Add tests for it. This is important so I don't break it in a
         
     | 
| 
      
 10 
     | 
    
         
            +
              future version unintentionally.
         
     | 
| 
      
 11 
     | 
    
         
            +
            * Commit, do not mess with rakefile, version, or history.
         
     | 
| 
      
 12 
     | 
    
         
            +
              (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
         
     | 
| 
      
 13 
     | 
    
         
            +
            * Send me a pull request. Bonus points for topic branches.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            == Copyright
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            Copyright (c) 2010 j05h. See LICENSE for details.
         
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1,55 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'rake'
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            begin
         
     | 
| 
      
 5 
     | 
    
         
            +
              require 'jeweler'
         
     | 
| 
      
 6 
     | 
    
         
            +
              Jeweler::Tasks.new do |gem|
         
     | 
| 
      
 7 
     | 
    
         
            +
                gem.name = "indexotron"
         
     | 
| 
      
 8 
     | 
    
         
            +
                gem.summary = %Q{A personal search index for any site you like}
         
     | 
| 
      
 9 
     | 
    
         
            +
                gem.description = %Q{A very personal search index for any site you like}
         
     | 
| 
      
 10 
     | 
    
         
            +
                gem.email = "josh@kleinpeter.org"
         
     | 
| 
      
 11 
     | 
    
         
            +
                gem.homepage = "http://github.com/j05h/indexotron"
         
     | 
| 
      
 12 
     | 
    
         
            +
                gem.authors = ["j05h"]
         
     | 
| 
      
 13 
     | 
    
         
            +
                gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
         
     | 
| 
      
 14 
     | 
    
         
            +
                gem.add_dependency "rubberband", ">= 0.0.2"
         
     | 
| 
      
 15 
     | 
    
         
            +
                gem.add_dependency "anemone", "0.4.0"
         
     | 
| 
      
 16 
     | 
    
         
            +
                # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
              Jeweler::GemcutterTasks.new
         
     | 
| 
      
 19 
     | 
    
         
            +
            rescue LoadError
         
     | 
| 
      
 20 
     | 
    
         
            +
              puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
         
     | 
| 
      
 21 
     | 
    
         
            +
            end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            require 'rake/testtask'
         
     | 
| 
      
 24 
     | 
    
         
            +
            Rake::TestTask.new(:test) do |test|
         
     | 
| 
      
 25 
     | 
    
         
            +
              test.libs << 'lib' << 'test'
         
     | 
| 
      
 26 
     | 
    
         
            +
              test.pattern = 'test/**/test_*.rb'
         
     | 
| 
      
 27 
     | 
    
         
            +
              test.verbose = true
         
     | 
| 
      
 28 
     | 
    
         
            +
            end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            begin
         
     | 
| 
      
 31 
     | 
    
         
            +
              require 'rcov/rcovtask'
         
     | 
| 
      
 32 
     | 
    
         
            +
              Rcov::RcovTask.new do |test|
         
     | 
| 
      
 33 
     | 
    
         
            +
                test.libs << 'test'
         
     | 
| 
      
 34 
     | 
    
         
            +
                test.pattern = 'test/**/test_*.rb'
         
     | 
| 
      
 35 
     | 
    
         
            +
                test.verbose = true
         
     | 
| 
      
 36 
     | 
    
         
            +
              end
         
     | 
| 
      
 37 
     | 
    
         
            +
            rescue LoadError
         
     | 
| 
      
 38 
     | 
    
         
            +
              task :rcov do
         
     | 
| 
      
 39 
     | 
    
         
            +
                abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
         
     | 
| 
      
 40 
     | 
    
         
            +
              end
         
     | 
| 
      
 41 
     | 
    
         
            +
            end
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            task :test => :check_dependencies
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            task :default => :test
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            require 'rake/rdoctask'
         
     | 
| 
      
 48 
     | 
    
         
            +
            Rake::RDocTask.new do |rdoc|
         
     | 
| 
      
 49 
     | 
    
         
            +
              version = File.exist?('VERSION') ? File.read('VERSION') : ""
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
              rdoc.rdoc_dir = 'rdoc'
         
     | 
| 
      
 52 
     | 
    
         
            +
              rdoc.title = "indexotron #{version}"
         
     | 
| 
      
 53 
     | 
    
         
            +
              rdoc.rdoc_files.include('README*')
         
     | 
| 
      
 54 
     | 
    
         
            +
              rdoc.rdoc_files.include('lib/**/*.rb')
         
     | 
| 
      
 55 
     | 
    
         
            +
            end
         
     | 
    
        data/VERSION
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            0.0.0
         
     | 
    
        data/bin/ndxo
    ADDED
    
    
    
        data/indexotron.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,66 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Generated by jeweler
         
     | 
| 
      
 2 
     | 
    
         
            +
            # DO NOT EDIT THIS FILE DIRECTLY
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
         
     | 
| 
      
 4 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.name = %q{indexotron}
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.version = "0.0.0"
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.authors = ["j05h"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.date = %q{2010-07-29}
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.default_executable = %q{ndxo}
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.description = %q{A very personal search index for any site you like}
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.email = %q{josh@kleinpeter.org}
         
     | 
| 
      
 16 
     | 
    
         
            +
              s.executables = ["ndxo"]
         
     | 
| 
      
 17 
     | 
    
         
            +
              s.extra_rdoc_files = [
         
     | 
| 
      
 18 
     | 
    
         
            +
                "LICENSE",
         
     | 
| 
      
 19 
     | 
    
         
            +
                 "README.rdoc"
         
     | 
| 
      
 20 
     | 
    
         
            +
              ]
         
     | 
| 
      
 21 
     | 
    
         
            +
              s.files = [
         
     | 
| 
      
 22 
     | 
    
         
            +
                ".document",
         
     | 
| 
      
 23 
     | 
    
         
            +
                 ".gitignore",
         
     | 
| 
      
 24 
     | 
    
         
            +
                 "LICENSE",
         
     | 
| 
      
 25 
     | 
    
         
            +
                 "README.rdoc",
         
     | 
| 
      
 26 
     | 
    
         
            +
                 "Rakefile",
         
     | 
| 
      
 27 
     | 
    
         
            +
                 "VERSION",
         
     | 
| 
      
 28 
     | 
    
         
            +
                 "bin/ndxo",
         
     | 
| 
      
 29 
     | 
    
         
            +
                 "indexotron.gemspec",
         
     | 
| 
      
 30 
     | 
    
         
            +
                 "lib/indexotron.rb",
         
     | 
| 
      
 31 
     | 
    
         
            +
                 "lib/indexotron/runner.rb",
         
     | 
| 
      
 32 
     | 
    
         
            +
                 "test/helper.rb",
         
     | 
| 
      
 33 
     | 
    
         
            +
                 "test/test_indexotron.rb",
         
     | 
| 
      
 34 
     | 
    
         
            +
                 "test/test_runner.rb"
         
     | 
| 
      
 35 
     | 
    
         
            +
              ]
         
     | 
| 
      
 36 
     | 
    
         
            +
              s.homepage = %q{http://github.com/j05h/indexotron}
         
     | 
| 
      
 37 
     | 
    
         
            +
              s.rdoc_options = ["--charset=UTF-8"]
         
     | 
| 
      
 38 
     | 
    
         
            +
              s.require_paths = ["lib"]
         
     | 
| 
      
 39 
     | 
    
         
            +
              s.rubygems_version = %q{1.3.7}
         
     | 
| 
      
 40 
     | 
    
         
            +
              s.summary = %q{A personal search index for any site you like}
         
     | 
| 
      
 41 
     | 
    
         
            +
              s.test_files = [
         
     | 
| 
      
 42 
     | 
    
         
            +
                "test/helper.rb",
         
     | 
| 
      
 43 
     | 
    
         
            +
                 "test/test_indexotron.rb",
         
     | 
| 
      
 44 
     | 
    
         
            +
                 "test/test_runner.rb"
         
     | 
| 
      
 45 
     | 
    
         
            +
              ]
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
              if s.respond_to? :specification_version then
         
     | 
| 
      
 48 
     | 
    
         
            +
                current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
         
     | 
| 
      
 49 
     | 
    
         
            +
                s.specification_version = 3
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
         
     | 
| 
      
 52 
     | 
    
         
            +
                  s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 53 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<rubberband>, [">= 0.0.2"])
         
     | 
| 
      
 54 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<anemone>, ["= 0.4.0"])
         
     | 
| 
      
 55 
     | 
    
         
            +
                else
         
     | 
| 
      
 56 
     | 
    
         
            +
                  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 57 
     | 
    
         
            +
                  s.add_dependency(%q<rubberband>, [">= 0.0.2"])
         
     | 
| 
      
 58 
     | 
    
         
            +
                  s.add_dependency(%q<anemone>, ["= 0.4.0"])
         
     | 
| 
      
 59 
     | 
    
         
            +
                end
         
     | 
| 
      
 60 
     | 
    
         
            +
              else
         
     | 
| 
      
 61 
     | 
    
         
            +
                s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 62 
     | 
    
         
            +
                s.add_dependency(%q<rubberband>, [">= 0.0.2"])
         
     | 
| 
      
 63 
     | 
    
         
            +
                s.add_dependency(%q<anemone>, ["= 0.4.0"])
         
     | 
| 
      
 64 
     | 
    
         
            +
              end
         
     | 
| 
      
 65 
     | 
    
         
            +
            end
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
    
        data/lib/indexotron.rb
    ADDED
    
    
| 
         @@ -0,0 +1,80 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'fileutils'
         
     | 
| 
      
 2 
     | 
    
         
            +
            module Indexotron
         
     | 
| 
      
 3 
     | 
    
         
            +
              class Runner
         
     | 
| 
      
 4 
     | 
    
         
            +
                NDXO_DIR = File.expand_path(ENV['NDXO_DIR'] || "~/indexotron/")
         
     | 
| 
      
 5 
     | 
    
         
            +
                ES_VERSION = "elasticsearch-0.9.0"
         
     | 
| 
      
 6 
     | 
    
         
            +
                class << self
         
     | 
| 
      
 7 
     | 
    
         
            +
                  def run(command)
         
     | 
| 
      
 8 
     | 
    
         
            +
                    configure
         
     | 
| 
      
 9 
     | 
    
         
            +
                    case(command)
         
     | 
| 
      
 10 
     | 
    
         
            +
                    when /^install$/
         
     | 
| 
      
 11 
     | 
    
         
            +
                      install
         
     | 
| 
      
 12 
     | 
    
         
            +
                    when /^start$/
         
     | 
| 
      
 13 
     | 
    
         
            +
                      start
         
     | 
| 
      
 14 
     | 
    
         
            +
                    when /^stop$/
         
     | 
| 
      
 15 
     | 
    
         
            +
                      stop
         
     | 
| 
      
 16 
     | 
    
         
            +
                    when /^pid$/
         
     | 
| 
      
 17 
     | 
    
         
            +
                      puts pid
         
     | 
| 
      
 18 
     | 
    
         
            +
                    else
         
     | 
| 
      
 19 
     | 
    
         
            +
                      help
         
     | 
| 
      
 20 
     | 
    
         
            +
                    end
         
     | 
| 
      
 21 
     | 
    
         
            +
                  end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                  def configure
         
     | 
| 
      
 24 
     | 
    
         
            +
                  end
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                  def install
         
     | 
| 
      
 27 
     | 
    
         
            +
                    FileUtils.mkdir_p(NDXO_DIR)
         
     | 
| 
      
 28 
     | 
    
         
            +
                    location = File.join NDXO_DIR, "#{ES_VERSION}.zip"
         
     | 
| 
      
 29 
     | 
    
         
            +
                    download "http://github.com/downloads/elasticsearch/elasticsearch/#{ES_VERSION}.zip", location
         
     | 
| 
      
 30 
     | 
    
         
            +
                    sys "cd #{NDXO_DIR} && unzip #{location}"
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                  end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                  def start
         
     | 
| 
      
 35 
     | 
    
         
            +
                    location = File.join NDXO_DIR, ES_VERSION
         
     | 
| 
      
 36 
     | 
    
         
            +
                    if File.exists? location
         
     | 
| 
      
 37 
     | 
    
         
            +
                      sys "cd #{location} && bin/elasticsearch > output 2>&1"
         
     | 
| 
      
 38 
     | 
    
         
            +
                      puts "Started elastic search (#{pid})"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    else
         
     | 
| 
      
 40 
     | 
    
         
            +
                      puts "elastic search does not exist at #{location}.  Try 'ndxo install'"
         
     | 
| 
      
 41 
     | 
    
         
            +
                    end
         
     | 
| 
      
 42 
     | 
    
         
            +
                  end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                  def pid
         
     | 
| 
      
 45 
     | 
    
         
            +
                    @pid ||= `ps -ef | grep [e]lastic | awk '{print $2}'`.split("\n").join(" ")
         
     | 
| 
      
 46 
     | 
    
         
            +
                  end
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                  def stop
         
     | 
| 
      
 49 
     | 
    
         
            +
                    if pid.empty?
         
     | 
| 
      
 50 
     | 
    
         
            +
                      puts "No elastic search is started"
         
     | 
| 
      
 51 
     | 
    
         
            +
                    else
         
     | 
| 
      
 52 
     | 
    
         
            +
                      puts "Stopping elastic search (#{pid})"
         
     | 
| 
      
 53 
     | 
    
         
            +
                      sys "kill -9 #{pid}"
         
     | 
| 
      
 54 
     | 
    
         
            +
                    end
         
     | 
| 
      
 55 
     | 
    
         
            +
                  end
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                  def download(url, location, force = false)
         
     | 
| 
      
 58 
     | 
    
         
            +
                    sys "curl -L #{url} -o #{location}" if force || !File.exists?(location)
         
     | 
| 
      
 59 
     | 
    
         
            +
                  end
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
                  def sys(command)
         
     | 
| 
      
 62 
     | 
    
         
            +
                    `#{command}`
         
     | 
| 
      
 63 
     | 
    
         
            +
                  end
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                  def help
         
     | 
| 
      
 66 
     | 
    
         
            +
                    puts <<-MSG
         
     | 
| 
      
 67 
     | 
    
         
            +
            Indexotron is a gem to help index and search web site.
         
     | 
| 
      
 68 
     | 
    
         
            +
            -------------------------------------------------------
         
     | 
| 
      
 69 
     | 
    
         
            +
            ndxo <command>
         
     | 
| 
      
 70 
     | 
    
         
            +
            Commands: 
         
     | 
| 
      
 71 
     | 
    
         
            +
              * install: installs to NDXO_DIR or ~/indexotron (elasticsearch.com)
         
     | 
| 
      
 72 
     | 
    
         
            +
              * start: starts an elastic search instance
         
     | 
| 
      
 73 
     | 
    
         
            +
              * stop: stops all elastic search instances
         
     | 
| 
      
 74 
     | 
    
         
            +
              * pid: prints pids for all instances
         
     | 
| 
      
 75 
     | 
    
         
            +
              * help: prints this help
         
     | 
| 
      
 76 
     | 
    
         
            +
            MSG
         
     | 
| 
      
 77 
     | 
    
         
            +
                  end
         
     | 
| 
      
 78 
     | 
    
         
            +
                end
         
     | 
| 
      
 79 
     | 
    
         
            +
              end
         
     | 
| 
      
 80 
     | 
    
         
            +
            end
         
     | 
    
        data/test/helper.rb
    ADDED
    
    
    
        data/test/test_runner.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,127 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: indexotron
         
     | 
| 
      
 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 
     | 
    
         
            +
            - j05h
         
     | 
| 
      
 14 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 16 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2010-07-29 00:00:00 -05:00
         
     | 
| 
      
 19 
     | 
    
         
            +
            default_executable: ndxo
         
     | 
| 
      
 20 
     | 
    
         
            +
            dependencies: 
         
     | 
| 
      
 21 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 22 
     | 
    
         
            +
              name: thoughtbot-shoulda
         
     | 
| 
      
 23 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 24 
     | 
    
         
            +
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 25 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 26 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 27 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 29 
     | 
    
         
            +
                    hash: 3
         
     | 
| 
      
 30 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 31 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 32 
     | 
    
         
            +
                    version: "0"
         
     | 
| 
      
 33 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 34 
     | 
    
         
            +
              version_requirements: *id001
         
     | 
| 
      
 35 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 36 
     | 
    
         
            +
              name: rubberband
         
     | 
| 
      
 37 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 39 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 40 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 41 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 43 
     | 
    
         
            +
                    hash: 27
         
     | 
| 
      
 44 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 45 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 46 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 47 
     | 
    
         
            +
                    - 2
         
     | 
| 
      
 48 
     | 
    
         
            +
                    version: 0.0.2
         
     | 
| 
      
 49 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: *id002
         
     | 
| 
      
 51 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 52 
     | 
    
         
            +
              name: anemone
         
     | 
| 
      
 53 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 54 
     | 
    
         
            +
              requirement: &id003 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 55 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 56 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 57 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 58 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 59 
     | 
    
         
            +
                    hash: 15
         
     | 
| 
      
 60 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 61 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 62 
     | 
    
         
            +
                    - 4
         
     | 
| 
      
 63 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 64 
     | 
    
         
            +
                    version: 0.4.0
         
     | 
| 
      
 65 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 66 
     | 
    
         
            +
              version_requirements: *id003
         
     | 
| 
      
 67 
     | 
    
         
            +
            description: A very personal search index for any site you like
         
     | 
| 
      
 68 
     | 
    
         
            +
            email: josh@kleinpeter.org
         
     | 
| 
      
 69 
     | 
    
         
            +
            executables: 
         
     | 
| 
      
 70 
     | 
    
         
            +
            - ndxo
         
     | 
| 
      
 71 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            extra_rdoc_files: 
         
     | 
| 
      
 74 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 75 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 76 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 77 
     | 
    
         
            +
            - .document
         
     | 
| 
      
 78 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 79 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 80 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 81 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 82 
     | 
    
         
            +
            - VERSION
         
     | 
| 
      
 83 
     | 
    
         
            +
            - bin/ndxo
         
     | 
| 
      
 84 
     | 
    
         
            +
            - indexotron.gemspec
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/indexotron.rb
         
     | 
| 
      
 86 
     | 
    
         
            +
            - lib/indexotron/runner.rb
         
     | 
| 
      
 87 
     | 
    
         
            +
            - test/helper.rb
         
     | 
| 
      
 88 
     | 
    
         
            +
            - test/test_indexotron.rb
         
     | 
| 
      
 89 
     | 
    
         
            +
            - test/test_runner.rb
         
     | 
| 
      
 90 
     | 
    
         
            +
            has_rdoc: true
         
     | 
| 
      
 91 
     | 
    
         
            +
            homepage: http://github.com/j05h/indexotron
         
     | 
| 
      
 92 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 95 
     | 
    
         
            +
            rdoc_options: 
         
     | 
| 
      
 96 
     | 
    
         
            +
            - --charset=UTF-8
         
     | 
| 
      
 97 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 98 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 99 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 100 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 101 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 102 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 103 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 104 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 105 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 106 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 107 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 108 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 109 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 110 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 111 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 112 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 113 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
      
 114 
     | 
    
         
            +
                  segments: 
         
     | 
| 
      
 115 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 116 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 117 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 120 
     | 
    
         
            +
            rubygems_version: 1.3.7
         
     | 
| 
      
 121 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 122 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 123 
     | 
    
         
            +
            summary: A personal search index for any site you like
         
     | 
| 
      
 124 
     | 
    
         
            +
            test_files: 
         
     | 
| 
      
 125 
     | 
    
         
            +
            - test/helper.rb
         
     | 
| 
      
 126 
     | 
    
         
            +
            - test/test_indexotron.rb
         
     | 
| 
      
 127 
     | 
    
         
            +
            - test/test_runner.rb
         
     |