Skip to content

Commit

Permalink
moved the tag marker to the version.rb file; fixed scripts as require…
Browse files Browse the repository at this point in the history
…d for its new location
  • Loading branch information
MadBomber committed Dec 12, 2014
1 parent e7822ce commit 7c99d3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ decrypt:
release:
script: |
rm -rf *.gem
sed -i "s/1.0.snapshot/${tag}/g" debug_me.gemspec
sed -i "s/1.0.snapshot/${tag}/g" lib/debug_me/version.rb
gem build debug_me.gemspec
chmod 0600 /home/r/rubygems.yml
gem push *.gem --config-file /home/r/rubygems.yml
2 changes: 1 addition & 1 deletion debug_me.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'debug_me/version'

Gem::Specification.new do |spec|
spec.name = 'debug_me'
spec.version = '1.0.snapshot' # replaced by rultor
spec.version = DebugMe::VERSION
spec.authors = ['Dewayne VanHoozer']
spec.email = ['dvanhoozer@gmail.com']
spec.summary = 'A tool to print the labeled value of variables.'
Expand Down
2 changes: 1 addition & 1 deletion lib/debug_me/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DebugMe
VERSION = '1.0.0'
VERSION = '1.0.snapshot'
end

0 comments on commit 7c99d3d

Please sign in to comment.