Sha256: b679163b6541dcb35acf095ccff4f0fc39cde9e7df17772598b72cb96e485057

Contents?: true

Size: 1.79 KB

Versions: 16

Compression:

Stored size: 1.79 KB

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'TestTrackRailsClient'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require 'rspec/core'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new
RuboCop::RakeTask.new

desc "Pull the latest versions of all dependencies into the gem for distribution"
task :vendor_deps do
  # Bundle minified JS client
  sh 'bower install'
  sh 'cp', 'bower_components/test_track_js_client/dist/testTrack.bundle.min.js', 'app/assets/javascripts'

  # Gems
  FileUtils.module_eval do
    cd "vendor/gems" do
      rm_r Dir.glob('*')
      %w(ruby_spec_helpers her fakeable_her publicsuffix-ruby).each do |repo|
        `git clone --depth=1 git@github.com:Betterment/#{repo}.git && rm -rf #{repo}/.git`
      end
    end

    cd "vendor/gems/ruby_spec_helpers" do
      rm_r(Dir.glob('.*') - %w(. ..))
      rm_r Dir.glob('*.md')
      rm_r %w(
        Gemfile
        Gemfile.lock
        spec
      ), force: true
      `sed -E -i '' '/license/d' ruby_spec_helpers.gemspec`
    end

    cd "vendor/gems/fakeable_her" do
      rm_r(Dir.glob('.*') - %w(. ..))
      rm_r Dir.glob('*.md')
      rm_r %w(
        Gemfile
        Gemfile.lock
        Rakefile
        bin
        spec
      ), force: true
      `sed -E -i '' '/license/d' fakeable_her.gemspec`
      `sed -E -i '' '/homepage/d' fakeable_her.gemspec`
    end
  end
end

task(:default).clear
task default: [:rubocop, :spec]

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
test_track_rails_client-1.1.0 Rakefile
test_track_rails_client-1.0.0 Rakefile
test_track_rails_client-0.9.20 Rakefile
test_track_rails_client-0.9.19 Rakefile
test_track_rails_client-0.9.18 Rakefile
test_track_rails_client-0.9.17 Rakefile
test_track_rails_client-0.9.16 Rakefile
test_track_rails_client-0.9.15 Rakefile
test_track_rails_client-0.9.14 Rakefile
test_track_rails_client-0.9.13 Rakefile
test_track_rails_client-0.9.12 Rakefile
test_track_rails_client-0.9.11 Rakefile
test_track_rails_client-0.9.10 Rakefile
test_track_rails_client-0.9.9 Rakefile
test_track_rails_client-0.9.8 Rakefile
test_track_rails_client-0.9.7 Rakefile