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: v0.9.3
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: v0.9.4
Choose a head ref
  • 6 commits
  • 3 files changed
  • 2 contributors

Commits on Sep 9, 2014

  1. Loose RubyGems minimum version requirement.

    Attempt to please old Debian/Ubuntu that ships 1.9.3 with RubyGems
    1.8.23, making impossible to install rake-compiler on it.
    
    Also since Debian/Ubuntu disables `gem update --system`, those users
    had not workaround to it.
    
    Closes #93
    luislavena committed Sep 9, 2014

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3f14503 View commit details
  2. Add basic Windows CI using AppVeyor

    [skip ci]
    luislavena committed Sep 9, 2014
    Copy the full SHA
    4ccb13e View commit details

Commits on Dec 28, 2014

  1. Update the repository URL

    It's not moved yet but it will be done soon.
    kou committed Dec 28, 2014
    Copy the full SHA
    47bc72a View commit details
  2. Add Kouhei Sutou to authors

    kou committed Dec 28, 2014
    Copy the full SHA
    af0c4c4 View commit details
  3. Bump version

    kou committed Dec 28, 2014
    Copy the full SHA
    85470e2 View commit details
  4. Add 0.9.4 release note

    kou committed Dec 28, 2014
    Copy the full SHA
    8ff68ae View commit details
Showing with 39 additions and 5 deletions.
  1. +12 −0 History.txt
  2. +22 −0 appveyor.yml
  3. +5 −5 tasks/gem.rake
12 changes: 12 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
=== 0.9.4 / 2014-12-28

* Notes:
* Change maintainer to Kouhei Sutou from Luis Lavena.
Thanks Luis Lavena for your great works!
* Change repository to https://github.com/rake-compiler/rake-compiler
from https://github.com/luislavena/rake-compiler .

* Bugfixes:
* Loose RubyGems dependency a little bit to ease old Debian/Ubuntu.
Closes #93

=== 0.9.3 / 2014-08-03

* Bugfixes:
22 changes: 22 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
version: "{build}"
branches:
only:
- master
clone_depth: 10
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- gem install bundler --quiet --no-ri --no-rdoc
- bundler --version
- bundle install
build: off
test_script:
- bundle exec rake spec

environment:
matrix:
- ruby_version: "193"
- ruby_version: "200"
- ruby_version: "200-x64"
10 changes: 5 additions & 5 deletions tasks/gem.rake
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ require 'rubygems/package_task'
GEM_SPEC = Gem::Specification.new do |s|
# basic information
s.name = "rake-compiler"
s.version = "0.9.3"
s.version = "0.9.4"
s.platform = Gem::Platform::RUBY

# description and details
@@ -12,7 +12,7 @@ GEM_SPEC = Gem::Specification.new do |s|

# requirements
s.required_ruby_version = ">= 1.8.7"
s.required_rubygems_version = ">= 1.8.25"
s.required_rubygems_version = ">= 1.8.23"

# dependencies
s.add_dependency 'rake'
@@ -38,13 +38,13 @@ GEM_SPEC = Gem::Specification.new do |s|
s.extra_rdoc_files = %w(README.rdoc LICENSE.txt History.txt)

# project information
s.homepage = 'http://github.com/luislavena/rake-compiler'
s.homepage = 'https://github.com/rake-compiler/rake-compiler'
s.rubyforge_project = 'rake-compiler'
s.licenses = ['MIT']

# author and contributors
s.author = 'Luis Lavena'
s.email = 'luislavena@gmail.com'
s.authors = ['Kouhei Sutou', 'Luis Lavena']
s.email = ['kou@cozmixng.org', 'luislavena@gmail.com']
end

gem_package = Gem::PackageTask.new(GEM_SPEC) do |pkg|