File tree Expand file tree Collapse file tree 6 files changed +19
-3
lines changed Expand file tree Collapse file tree 6 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 66 - 2.5
77 - 2.6
88 - 2.7
9+
10+ before_install :
11+ - gem install bundler:1.17.2
912
1013script :
1114 - bundle exec rake
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ group :development do
88 gem "mocha"
99 gem "rake"
1010 gem "test-unit"
11+ gem "bundler"
1112end
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- podcast_api (1.0.1 )
4+ podcast_api (1.0.2 )
55 httparty
66
77GEM
@@ -24,6 +24,7 @@ PLATFORMS
2424 ruby
2525
2626DEPENDENCIES
27+ bundler
2728 mocha
2829 podcast_api !
2930 rake
Original file line number Diff line number Diff line change 11# Podcast API Ruby Library
22
3+ [ ![ Build Status] ( https://travis-ci.com/ListenNotes/podcast-api-ruby.svg?branch=main )] ( https://travis-ci.com/ListenNotes/podcast-api-ruby )
4+
35
46The Podcast API Ruby library provides convenient access to the [ Listen Notes Podcast API] ( https://www.listennotes.com/api/ ) from
57applications written in Ruby.
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ Rake::TestTask.new(:test) do |test|
55 test.test_files = FileList['tests/*_test.rb']
66end
77
8- desc " Run Tests"
9- task :default => :test
8+ desc ' Run Tests'
9+ task :default => :test
Original file line number Diff line number Diff line change 1+ require 'rake/testtask'
2+
3+ Rake ::TestTask . new ( :test ) do |test |
4+ test . libs << 'test'
5+ test . test_files = FileList [ 'tests/*_test.rb' ]
6+ end
7+
8+ desc 'Run Tests'
9+ task :default => :test
You can’t perform that action at this time.
0 commit comments