From 52c8ffda76f43eb110e7743f4b4b06020f7a8973 Mon Sep 17 00:00:00 2001 From: tanihito Date: Thu, 3 Apr 2014 15:58:47 +0900 Subject: [PATCH] Fix UTF-8 problem with authors name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cloud Foundry has some problems with the "é" in the authors name. --- README.md | 2 +- jquery-rails.gemspec | 2 +- lib/jquery/rails/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57f16370..83922df5 100644 --- a/README.md +++ b/README.md @@ -83,4 +83,4 @@ Feel free to open an issue ticket if you find something that could be improved. Many thanks are due to all of [the jquery-rails contributors](https://github.com/rails/jquery-rails/graphs/contributors). Special thanks to [JangoSteve](http://github.com/JangoSteve) for tirelessly answering questions and accepting patches, and the [Rails Core Team](https://github.com/organizations/rails/teams/617) for making jquery-rails an official part of Rails 3.1. -Copyright [André Arko](http://arko.net), released under the MIT License. +Copyright [Andre Arko](http://arko.net), released under the MIT License. diff --git a/jquery-rails.gemspec b/jquery-rails.gemspec index fc3d2c40..a9d0cbdc 100644 --- a/jquery-rails.gemspec +++ b/jquery-rails.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = "jquery-rails" s.version = Jquery::Rails::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["André Arko"] + s.authors = ["Andre Arko"] s.email = ["andre@arko.net"] s.homepage = "http://rubygems.org/gems/jquery-rails" s.summary = "Use jQuery with Rails 3" diff --git a/lib/jquery/rails/version.rb b/lib/jquery/rails/version.rb index dd37d2ad..04ea9a03 100644 --- a/lib/jquery/rails/version.rb +++ b/lib/jquery/rails/version.rb @@ -1,6 +1,6 @@ module Jquery module Rails - VERSION = "3.1.0" + VERSION = "3.1.1" JQUERY_VERSION = "1.11.0" JQUERY_UJS_VERSION = "f160fa2f4615f93e1a0d75e49de59d19c18c8728" end