This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
def array_plus_array_element(array) | |
result = [] | |
array.each do |i| | |
result = result + [i] | |
end | |
result | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'fileutils' | |
require 'gepub' | |
desc "Fetch the book from hpmor.com" | |
task :fetch do | |
unless File.exists? 'book-source/images/cover.jpg' |