Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rake-compiler/rake-compiler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.2
Choose a base ref
...
head repository: rake-compiler/rake-compiler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.3
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 7, 2021

  1. Bump version

    kou committed Dec 7, 2021
    Copy the full SHA
    bcb78a2 View commit details
  2. Ignore target_prefix= to ensure installing lib_dir

    GitHub: fix GH-194
    
    Reported by Andrew Kane. Thanks!!!
    kou committed Dec 7, 2021
    Copy the full SHA
    58d4bfa View commit details
  3. Add 1.1.3 entry

    kou committed Dec 7, 2021
    Copy the full SHA
    11301d7 View commit details
Showing with 8 additions and 2 deletions.
  1. +6 −0 History.md
  2. +1 −1 lib/rake/extensiontask.rb
  3. +1 −1 rake-compiler.gemspec
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.1.3/ 2021-12-08

* Fixes:
* Fix a bug that wrong install location is used.
[#194](https://github.com/rake-compiler/rake-compiler/issues/194) [Reported by Andrew Kane]

### 1.1.2 / 2021-12-07

* Changes:
2 changes: 1 addition & 1 deletion lib/rake/extensiontask.rb
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
task "copy:#{@name}:#{platf}:#{ruby_ver}" => [lib_binary_dir_path, tmp_binary_path, "#{tmp_path}/Makefile"] do
# install in lib for native platform only
unless for_platform
sh "#{make} install", chdir: tmp_path
sh "#{make} install target_prefix=", chdir: tmp_path
end
end
# copy binary from temporary location to staging directory
2 changes: 1 addition & 1 deletion rake-compiler.gemspec
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
Gem::Specification.new do |s|
# basic information
s.name = "rake-compiler"
s.version = "1.1.2"
s.version = "1.1.3"
s.platform = Gem::Platform::RUBY

# description and details