Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ascii encoding 2020 #5

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ruby 1.9+ compatible path in Rakefile
Rake was failing because PKG_NAME was not defined.
  • Loading branch information
garethrees committed Oct 7, 2016
commit fac10c808fe73bfb1a38c1d63fa30a8cb0a92f82
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -4,7 +4,8 @@ require 'rake/testtask'
require 'rbconfig'
require 'fileutils'

spec = eval File.read('ruby-msg.gemspec')
gemspec_file = File.expand_path(File.dirname(__FILE__) + '/ruby-msg.gemspec')
spec = eval File.read(gemspec_file)

task :default => [:test]