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 6
6
- 2.5
7
7
- 2.6
8
8
- 2.7
9
+
10
+ before_install :
11
+ - gem install bundler:1.17.2
9
12
10
13
script :
11
14
- bundle exec rake
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ group :development do
8
8
gem "mocha"
9
9
gem "rake"
10
10
gem "test-unit"
11
+ gem "bundler"
11
12
end
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- podcast_api (1.0.1 )
4
+ podcast_api (1.0.2 )
5
5
httparty
6
6
7
7
GEM
@@ -24,6 +24,7 @@ PLATFORMS
24
24
ruby
25
25
26
26
DEPENDENCIES
27
+ bundler
27
28
mocha
28
29
podcast_api !
29
30
rake
Original file line number Diff line number Diff line change 1
1
# Podcast API Ruby Library
2
2
3
+ [ ![ Build Status] ( https://travis-ci.com/ListenNotes/podcast-api-ruby.svg?branch=main )] ( https://travis-ci.com/ListenNotes/podcast-api-ruby )
4
+
3
5
4
6
The Podcast API Ruby library provides convenient access to the [ Listen Notes Podcast API] ( https://www.listennotes.com/api/ ) from
5
7
applications written in Ruby.
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ Rake::TestTask.new(:test) do |test|
5
5
test.test_files = FileList['tests/*_test.rb']
6
6
end
7
7
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