Sha256: 693049e7c6c95eb0f2b12cd91ac14ad596ae6c86f9f5e622d30fba786ca5ebbf

Contents?: true

Size: 539 Bytes

Versions: 21

Compression:

Stored size: 539 Bytes

Contents

require 'rubygems'
require_relative './lib/rley/constants'

namespace :gem do
  desc 'Push the gem to rubygems.org'
  task :push do
    system("gem push rley-#{Rley::Version}.gem")
  end
end # namespace


# Testing-specific tasks

# RSpec as testing tool
require 'rspec/core/rake_task'
desc 'Run RSpec'
RSpec::Core::RakeTask.new do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end


# Combine RSpec tests
desc 'Run tests, with RSpec'
task test: [:spec]


# Default rake task
task default: :test

# End of file

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
rley-0.3.04 Rakefile
rley-0.3.01 Rakefile
rley-0.3.00 Rakefile
rley-0.2.15 Rakefile
rley-0.2.14 Rakefile
rley-0.2.12 Rakefile
rley-0.2.11 Rakefile
rley-0.2.10 Rakefile
rley-0.2.09 Rakefile
rley-0.2.08 Rakefile
rley-0.2.06 Rakefile
rley-0.2.05 Rakefile
rley-0.2.04 Rakefile
rley-0.2.03 Rakefile
rley-0.2.02 Rakefile
rley-0.2.01 Rakefile
rley-0.2.00 Rakefile
rley-0.1.12 Rakefile
rley-0.1.11 Rakefile
rley-0.1.10 Rakefile