Sha256: a0a5b7a9fb020749515e112ab13d25ffeb1380537473d68d824283bbd9b78e2e
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
begin require 'bones' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end task :default => 'test:run' ensure_in_path 'lib' require 'relisp' Bones do name 'relisp' authors 'Don' email 'don@ohspite.net' url 'https://rubygems.org/gems/relisp' summary 'Call ruby from emacs and call elisp from ruby. If you never did you should. These things are fun and fun is good.' description 'Call ruby from emacs and call elisp from ruby. If you never did you should. These things are fun and fun is good.' version Relisp::VERSION # rubyforge.name 'relisp' history_file 'CHANGELOG' manifest_file 'Manifest' readme_file 'README' rdoc.main 'README' exclude %w(tmp$ bak$ ~$ CVS \.svn/ \.git/ \.bzr/ \.bzrignore ^pkg/) rdoc.include %w(README ^lib/ ^bin/ ^ext/ \.txt$ \.rdoc$) gem.extras[:post_install_message] = <<-MSG --------------------------- Wait! You're not finished! The gem is installed, and you can now call elisp from ruby. But if you want to call ruby from emacs (and you do, right?) you need to go into the 'src' directory of this gem and copy 'relisp.el' and/or 'relisp.elc' to your elisp folder (probably '~/.elisp'). Then you might want to add the lines (autoload 'relisp-start-slave "relisp" nil t) (autoload 'ruby-eval "relisp" nil t) to your emacs initialization file (probably '~/.emacs'). If you don't know where to find the files for this gem, run the command "gem env gemdir". Or you can download the tarball for this gem and get the files there. --------------------------- MSG # spec.opts << '--color' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
relisp-1.0.1 | Rakefile |