From 1fff1fd8c2d76f76c206a70d517d7b04d375cd4d Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Sun, 2 Mar 2014 22:19:01 +0000 Subject: [PATCH 1/4] Use morpher from rubygems --- Gemfile | 2 -- mutant.gemspec | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index f3276aa4..39e6cb41 100644 --- a/Gemfile +++ b/Gemfile @@ -4,8 +4,6 @@ source 'https://rubygems.org' gem 'mutant', path: '.' -gem 'morpher', git: 'https://github.com/mbj/morpher.git' - gemspec name: 'mutant' gem 'devtools', git: 'https://github.com/rom-rb/devtools.git' diff --git a/mutant.gemspec b/mutant.gemspec index 12dbe85a..19a54958 100644 --- a/mutant.gemspec +++ b/mutant.gemspec @@ -24,6 +24,7 @@ Gem::Specification.new do |gem| gem.required_ruby_version = '>= 1.9.3' gem.add_runtime_dependency('parser', '~> 2.1.4') + gem.add_runtime_dependency('morpher', '~> 0.0.1') gem.add_runtime_dependency('procto', '~> 0.0.2') gem.add_runtime_dependency('abstract_type', '~> 0.0.7') gem.add_runtime_dependency('unparser', '~> 0.1.8') From a200b50beb9d5ebd9fa0fff9b6062e1ef26707f8 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Sun, 2 Mar 2014 22:19:25 +0000 Subject: [PATCH 2/4] Bump version to 0.5.0 * 0.4.0 on rubygems was defunkt and yanked. --- lib/mutant/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mutant/version.rb b/lib/mutant/version.rb index c0376020..4641a16b 100644 --- a/lib/mutant/version.rb +++ b/lib/mutant/version.rb @@ -2,5 +2,5 @@ module Mutant # The current mutant version - VERSION = '0.4.0'.freeze + VERSION = '0.5.0'.freeze end # Mutant From 47cb31f12ea1595306a8fe0936c59e0eedfa00de Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Mon, 3 Mar 2014 12:11:59 +0000 Subject: [PATCH 3/4] Remove rspec dep from mutant main gem --- mutant.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/mutant.gemspec b/mutant.gemspec index 19a54958..69ed0894 100644 --- a/mutant.gemspec +++ b/mutant.gemspec @@ -35,7 +35,6 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency('inflecto', '~> 0.0.2') gem.add_runtime_dependency('anima', '~> 0.2.0') gem.add_runtime_dependency('concord', '~> 0.1.4') - gem.add_runtime_dependency('rspec', '~> 2.14.1') gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5') end From 69bad896be62696cea826782fd9dcd0dd0a4b847 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Mon, 3 Mar 2014 12:21:16 +0000 Subject: [PATCH 4/4] Prepare version 0.5.1 --- Changelog.md | 8 +++++++- lib/mutant/version.rb | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index f47ab440..8b579281 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,10 @@ -# v0.5.0 2014-02-16 +# v0.5.1 2014-03-03 + +Changes: + +* Remove rspec dep from main mutant gem + +# v0.5.0 2014-03-02 Changes: diff --git a/lib/mutant/version.rb b/lib/mutant/version.rb index 4641a16b..6b817146 100644 --- a/lib/mutant/version.rb +++ b/lib/mutant/version.rb @@ -2,5 +2,5 @@ module Mutant # The current mutant version - VERSION = '0.5.0'.freeze + VERSION = '0.5.1'.freeze end # Mutant