Sha256: 1da6c38df515f814f5c889e2fa60ffec72d3e4d58cceefb7a699e2f60a32391b
Contents?: true
Size: 942 Bytes
Versions: 8
Compression:
Stored size: 942 Bytes
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "musicscrape" gem.homepage = "http://github.com/tallbryan/musicscrape" gem.license = "BOB" gem.summary = "scrape this weeks shows off the stranger" gem.description = "scrape this weeks shows off the stranger" gem.email = "fake@fake.com" gem.authors = ["tallbryan"] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end task :default => :spec
Version data entries
8 entries across 8 versions & 1 rubygems