-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
746 additions
and
764 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
source 'http://rubygems.org' | ||
|
||
raise "Ruby >=1.9.3 is required! Detected version: #{RUBY_VERSION}" unless RUBY_VERSION.to_s >= "1.9.3" | ||
fail "Ruby >=1.9.3 is required! Detected version: #{RUBY_VERSION}" unless RUBY_VERSION.to_s >= '1.9.3' | ||
|
||
# celluloid-io should automatically install celluloid and nio4r | ||
gem "rake", ">= 10.1.0" | ||
gem "celluloid-io", ">= 0.16.2" | ||
gem "eventmachine", ">= 1.0.3" | ||
gem 'rake', '>= 10.1.0' | ||
gem 'celluloid-io', '>= 0.16.2' | ||
gem 'eventmachine', '>= 1.0.3' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
require 'rdoc/task' | ||
|
||
rdoc_dir = "rdoc" | ||
version = "0.2a" | ||
rdoc_dir = 'rdoc' | ||
version = '0.2a' | ||
|
||
RDoc::Task.new do |rdoc| | ||
rdoc.rdoc_dir = rdoc_dir | ||
rdoc.title = "RubIRCd #{version}" | ||
rdoc.main = "README.doc" | ||
rdoc.rdoc_files.include("*.rb") | ||
rdoc.rdoc_files.include("modules/*.rb") | ||
rdoc.options << "--all" | ||
rdoc.main = 'README.doc' | ||
rdoc.rdoc_files.include('*.rb') | ||
rdoc.rdoc_files.include('modules/*.rb') | ||
rdoc.options << '--all' | ||
end | ||
|
||
task :install do | ||
sh "bundle install" | ||
sh 'bundle install' | ||
end | ||
|
||
task :default => [:install] |
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
Oops, something went wrong.