Skip to content
Snippets Groups Projects
Commit 96a69c96 authored by Lyle Johnson's avatar Lyle Johnson
Browse files

Added the :install task to the Rakefile

parent 04c6fcb7
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ISCC = "C:\\Progra~1\\InnoSe~1\\ISCC.exe" ...@@ -15,7 +15,7 @@ ISCC = "C:\\Progra~1\\InnoSe~1\\ISCC.exe"
Hoe.new("FXRuby", PKG_VERSION) do |p| Hoe.new("FXRuby", PKG_VERSION) do |p|
# ... project specific data ... # ... project specific data ...
p.blog_categories = %w{FXRuby} p.blog_categories = %w{FXRuby}
p.clean_globs = ["ext/fox16/Makefile", "ext/fox16/*.o", "ext/fox16/*.bundle", "ext/fox16/mkmf.log", "ext/fox16/conftest.dSYM"] p.clean_globs = [".config", "ext/fox16/Makefile", "ext/fox16/*.o", "ext/fox16/*.bundle", "ext/fox16/mkmf.log", "ext/fox16/conftest.dSYM"]
p.developer("Lyle Johnson", "lyle@lylejohnson.name") p.developer("Lyle Johnson", "lyle@lylejohnson.name")
p.extra_rdoc_files = ["rdoc-sources", File.join("rdoc-sources", "README.rdoc")] p.extra_rdoc_files = ["rdoc-sources", File.join("rdoc-sources", "README.rdoc")]
p.remote_rdoc_dir = "doc/api" p.remote_rdoc_dir = "doc/api"
...@@ -189,6 +189,11 @@ task :build => [:configure] do ...@@ -189,6 +189,11 @@ task :build => [:configure] do
ruby "install.rb setup" ruby "install.rb setup"
end end
desc "Install it."
task :install => [:build] do
ruby "install.rb install"
end
task :scintilla do task :scintilla do
ruby "scripts/iface.rb -i ~/src/fxscintilla/scintilla/include/Scintilla.iface -o lib/fox16/scintilla.rb" ruby "scripts/iface.rb -i ~/src/fxscintilla/scintilla/include/Scintilla.iface -o lib/fox16/scintilla.rb"
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment