Sha256: f713e6c4414b8267998abb01aae8eae7cccbb58ef1cf98b60e7109d96165109c
Contents?: true
Size: 397 Bytes
Versions: 1
Compression:
Stored size: 397 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" RSpec::Core::RakeTask.new('spec') task :default => :spec task :console do sh "irb -rubygems -I lib -r coffeelint.rb" end task :compile => [:prepare, :build] task :prepare do sh "git submodule init" sh "git submodule update" Dir.chdir('coffeelint') do sh "npm install" sh "npm run compile" end sh "rake spec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
coffeelint-0.2.0 | Rakefile |