summaryrefslogtreecommitdiffhomepage
path: root/sample/mrbgem.rake
blob: 3c5a3da0785cbda795d645bd14e89d81be9674b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
MRuby::Gem::Specification.new('sample') do |spec|
  spec.license = 'MIT'
  spec.author  = 'TODO: Put your name here'
  spec.summary = %q{TODO: Write a short summary of your gem.}
  spec.version = '0.1.0'

  # Add your runtime dependencies here
  # spec.add_dependency('mruby-math', :core => 'mruby-math')


  # Add your test dependencies here
  if build.test_enabled?
    spec.add_dependency('mruby-spec', :github => 'sagmor/mruby-spec')
  end
end