Skip to content

Commit eea03a0

Browse files
committed
Fix 'bundle exec rake spec' not working
1 parent 6f32fdf commit eea03a0

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ source 'https://rubygems.org'
33
gemspec
44

55
group :development, :test do
6+
gem "base64"
67
gem "rake", ">= 12.3.3"
78
gem "vcr", ">=3.0.3"
89
end

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ PATH
77
GEM
88
remote: https://rubygems.org/
99
specs:
10+
base64 (0.3.0)
1011
diff-lcs (1.3)
1112
ethon (0.16.0)
1213
ffi (>= 1.15.0)
@@ -33,6 +34,7 @@ PLATFORMS
3334
ruby
3435

3536
DEPENDENCIES
37+
base64
3638
rake (>= 12.3.3)
3739
rspec (~> 3.6, >= 3.6.0)
3840
vcr (>= 3.0.3)

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
begin
22
require 'rspec/core/rake_task'
33
require 'bundler/gem_tasks'
4-
require 'lib/ynab/version'
4+
require_relative 'lib/ynab/version'
55

66
RSpec::Core::RakeTask.new(:spec) do |t|
77
t.rspec_opts = "-fd"

0 commit comments

Comments
 (0)