Attempt ruby-download before ruby-build.

This commit is contained in:
Anthony Sottile 2014-06-07 14:25:44 -07:00
parent 09650b814a
commit 07664a80ca
7 changed files with 24 additions and 9 deletions

View file

@ -0,0 +1 @@
*.gem

View file

@ -0,0 +1,5 @@
#!/usr/bin/env ruby
puts RUBY_VERSION
puts RUBY_PATCHLEVEL
puts 'Hello world from a ruby hook'

View file

@ -0,0 +1,6 @@
- id: ruby_hook
name: Ruby Hook
entry: ruby_hook
language: ruby
language_version: 1.9.3-p484
files: \.rb$

View file

@ -0,0 +1,9 @@
Gem::Specification.new do |s|
s.name = 'ruby_hook'
s.version = '0.1.0'
s.authors = ['Anthony Sottile']
s.summary = 'A ruby hook!'
s.description = 'A ruby hook!'
s.files = ['bin/ruby_hook']
s.executables = ['ruby_hook']
end