task/README.md in rib-1.4.0 vs task/README.md in rib-1.5.0

- old
+ new

@@ -11,36 +11,36 @@ rake gem:spec # Generate gemspec rake test # Run tests in memory ## REQUIREMENTS: -* Tested with MRI (official CRuby) 1.9.3, 2.0.0, Rubinius and JRuby. +* Tested with MRI (official CRuby), Rubinius and JRuby. ## INSTALLATION: git submodule add git://github.com/godfat/gemgem.git task And in Rakefile: ``` ruby begin - require "#{dir = File.dirname(__FILE__)}/task/gemgem" + require "#{__dir__}/task/gemgem" rescue LoadError sh 'git submodule update --init' exec Gem.ruby, '-S', $PROGRAM_NAME, *ARGV end -Gemgem.init(dir) do |s| +Gemgem.init(__dir__, :submodules => %w[your-dep]) do |s| s.name = 'your-gem' s.version = '0.1.0' end ``` ## LICENSE: Apache License 2.0 -Copyright (c) 2011-2013, Lin Jen-Shin (godfat) +Copyright (c) 2011-2016, Lin Jen-Shin (godfat) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at