Sha256: 032b0d7229895cea7a2bedd8b017d44e5310521c5b80b3a28613d5545714ccc8

Contents?: true

Size: 489 Bytes

Versions: 13

Compression:

Stored size: 489 Bytes

Contents

# acts_as_ferret install script
require 'fileutils'

def install(file)
  puts "Installing: #{file}"
  target = File.join(File.dirname(__FILE__), '..', '..', '..', file)
  if File.exists?(target)
    puts "target #{target} already exists, skipping"
  else
    FileUtils.cp File.join(File.dirname(__FILE__), file), target
  end
end

install File.join( 'script', 'ferret_server' )
install File.join( 'config', 'ferret_server.yml' )

puts IO.read(File.join(File.dirname(__FILE__), 'README'))

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
cehoffman-acts_as_ferret-0.4.4 install.rb
jkraemer-acts_as_ferret-0.4.4 install.rb
watson-acts_as_ferret-0.4.8.2 install.rb
acts_as_ferret-0.4.8.2 install.rb
sdsykes_acts_as_ferret-0.4.3.1 install.rb
acts_as_ferret-0.4.8.1 install.rb
acts_as_ferret-0.4.8.rails3 install.rb
acts_as_ferret-0.4.8 install.rb
acts_as_ferret-0.4.7 install.rb
acts_as_ferret-0.4.6 install.rb
acts_as_ferret-0.4.2 install.rb
acts_as_ferret-0.4.3 install.rb
acts_as_ferret-0.4.4 install.rb