Sha256: 39e114ebcc0fecaa1b735853233a22750f5bb0a284b6c27684a9c7f9e435713f
Contents?: true
Size: 492 Bytes
Versions: 5
Compression:
Stored size: 492 Bytes
Contents
#!/usr/bin/env rake require 'bundler' require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks desc 'Bundle the gem' task :bundle => [:bundle_install] do sh 'grunt less_imports && grunt less:dist' sh 'gem build *.gemspec' sh 'gem install *.gem' sh 'rm *.gem' end desc 'Runs bundle install' task :bundle_install do sh('bundle install') end task(:default).clear task :default => :bundle RSpec::Core::RakeTask.new do |task| task.rspec_opts = %w(--color --format doc) end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
railsstrap-3.3.4 | Rakefile |
railsstrap-3.3.2 | Rakefile |
railsstrap-3.3.1 | Rakefile |
railsstrap-3.3.0 | Rakefile |
railsstrap-3.2.0.3 | Rakefile |