Rakefile in appsignal-1.3.6 vs Rakefile in appsignal-1.4.0.alpha.1

- old
+ new

@@ -102,11 +102,11 @@ raise "Actually change the version in: #{VERSION_FILE}" end end task :install do - system 'cd ext && rm -f libappsignal.a appsignal-agent appsignal_extension.h Makefile appsignal_extension.bundle && ruby extconf.rb && make && cd ..' + system 'cd ext && rm -f libappsignal.a appsignal-agent appsignal_extension.h Makefile appsignal.bundle && ruby extconf.rb && make && cd ..' Bundler.with_clean_env do GEMFILES.each do |gemfile| system "bundle --gemfile gemfiles/#{gemfile}.gemfile" end end @@ -133,10 +133,10 @@ short_version = version.split('-').first out << "echo 'Switching to #{short_version}'" out << "#{switch_command.call(version)} || { echo 'Switching Ruby failed'; exit 1; }" out << "ruby -v" out << "echo 'Compiling extension'" - out << 'cd ext && rm -f appsignal-agent appsignal_extension.bundle appsignal_extension.h libappsignal.a Makefile && ruby extconf.rb && make && cd ..' + out << 'cd ext && rm -f appsignal-agent appsignal_extension.bundle appsignal.h libappsignal.a Makefile && ruby extconf.rb && make && cd ..' GEMFILES.each do |gemfile| unless EXCLUSIONS[gemfile] && EXCLUSIONS[gemfile].include?(short_version) out << "echo 'Bundling #{gemfile} in #{short_version}'" out << "bundle --quiet --gemfile gemfiles/#{gemfile}.gemfile || { echo 'Bundling failed'; exit 1; }" out << "echo 'Running #{gemfile} in #{short_version}'"