Sha256: 39ece1e847dfe8bb4e49b39cada186fe18811b3d01839ee9559cc647d91f6c2a

Contents?: true

Size: 551 Bytes

Versions: 6

Compression:

Stored size: 551 Bytes

Contents

# Copy the images (*.gif) into RAILS_ROOT/public/images/comatose
RAILS_ROOT = File.join(File.dirname(__FILE__), '../../../')

unless FileTest.exist? File.join(RAILS_ROOT, 'public', 'images', 'comatose')
  FileUtils.mkdir( File.join(RAILS_ROOT, 'public', 'images', 'comatose') )
end

FileUtils.cp( 
  Dir[File.join(File.dirname(__FILE__), 'resources', 'public', 'images', '*.gif')], 
  File.join(RAILS_ROOT, 'public', 'images', 'comatose'),
  :verbose => true
)

# Show the INSTALL text file
puts IO.read(File.join(File.dirname(__FILE__), 'INSTALL'))

Version data entries

6 entries across 6 versions & 4 rubygems

Version Path
darthapo-comatose-2.0.3 install.rb
darthapo-comatose-2.0 install.rb
jcnetdev-comatose-2.0.1 install.rb
staugaard-comatose-2.0.2 install.rb
staugaard-comatose-2.0.3 install.rb
comatose-2.0.1 install.rb