RubyApp 0.6.8 → 0.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/Rakefile +1 -1
  2. data/lib/ruby_app/version.rb +1 -1
  3. metadata +3 -3
data/Rakefile CHANGED
@@ -30,7 +30,7 @@ namespace :ruby_app do
30
30
  version_file = File.join(RubyApp::ROOT, %w[version.rb])
31
31
  RubyApp::VERSION =~ /(\d+)\.(\d+)\.(\d+)/
32
32
  system("sed 's|[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*|#{$1}.#{$2}.#{$3.to_i + 1}|g' < '#{version_file}' > '#{version_file}.out'; rm '#{version_file}'; mv '#{version_file}.out' '#{version_file}'")
33
- system("git commit --all --message=\'Version #{RubyApp::VERSION}\'; git checkout development")
33
+ system("git commit --all --message=\'Version #{$1}.#{$2}.#{$3.to_i + 1}\'; git checkout development")
34
34
  end
35
35
 
36
36
  namespace :process do
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.6.8"
2
+ VERSION = "0.6.10"
3
3
  ROOT = File.expand_path(File.dirname(__FILE__))
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RubyApp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 8
10
- version: 0.6.8
9
+ - 10
10
+ version: 0.6.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar