summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mrbgem.rake5
-rw-r--r--mrblib/example.rb5
2 files changed, 10 insertions, 0 deletions
diff --git a/mrbgem.rake b/mrbgem.rake
new file mode 100644
index 0000000..2a79d1b
--- /dev/null
+++ b/mrbgem.rake
@@ -0,0 +1,5 @@
+MRuby::Gem::Specification.new('my_silly_extension') do |spec|
+ spec.license = 'MIT'
+ spec.author = 'Tradam'
+ spec.summary = 'Example mrbgem using ruby'
+end
diff --git a/mrblib/example.rb b/mrblib/example.rb
new file mode 100644
index 0000000..8460b32
--- /dev/null
+++ b/mrblib/example.rb
@@ -0,0 +1,5 @@
+class Test
+ def does_it_work?
+ puts "yes it does"
+ end
+end