Sha256: eb7cd01cecdb371dcac7479d841e6235dfbbd80cc5a7bea9a1589dc226ba18d9

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

require 'bundler/gem_tasks'

task :spec do
  sh "rspec spec"
end

task :default do # can fail when run with bundler
  ['2.3.14', '~>3.0.15', '~>3.1.6', '~>3.2.6'].each do |version|
    sh "export RAILS='#{version}' && (bundle check || bundle) && bundle exec rake spec"
  end
  sh "git checkout Gemfile.lock"
end

# extracted from https://github.com/grosser/project_template
rule /^version:bump:.*/ do |t|
  sh "git status | grep 'nothing to commit'" # ensure we are not dirty
  index = ['major', 'minor','patch'].index(t.name.split(':').last)
  file = 'lib/gettext_i18n_rails/version.rb'

  version_file = File.read(file)
  old_version, *version_parts = version_file.match(/(\d+)\.(\d+)\.(\d+)/).to_a
  version_parts[index] = version_parts[index].to_i + 1
  version_parts[2] = 0 if index < 2 # remove patch for minor
  version_parts[1] = 0 if index < 1 # remove minor for major
  new_version = version_parts * '.'
  File.open(file,'w'){|f| f.write(version_file.sub(old_version, new_version)) }

  sh "bundle && git add #{file} Gemfile.lock && git commit -m 'bump version to #{new_version}'"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gettext_i18n_rails-0.6.6 Rakefile
gettext_i18n_rails-0.6.5 Rakefile
gettext_i18n_rails-0.6.4 Rakefile
gettext_i18n_rails-0.6.3 Rakefile