Skip to content

Commit

Permalink
version is now 0.3.0.pre1
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardochimal committed Feb 21, 2010
1 parent 5baacad commit a2f1c39
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions VERSION.yml
Expand Up @@ -2,3 +2,4 @@
:patch: 0
:major: 0
:minor: 3
:build: pre1
4 changes: 3 additions & 1 deletion lib/taps/config.rb
Expand Up @@ -7,7 +7,9 @@ def self.version_yml
end

def self.version
"#{version_yml[:major]}.#{version_yml[:minor]}.#{version_yml[:patch]}"
version = "#{version_yml[:major]}.#{version_yml[:minor]}.#{version_yml[:patch]}"
version += ".#{version_yml[:build]}" if version_yml[:build]
version
end

def self.compatible_version
Expand Down
17 changes: 9 additions & 8 deletions taps.gemspec
@@ -1,13 +1,13 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{taps}
s.version = "0.3.0"
s.version = "0.3.0.pre1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Ricardo Chimal, Jr.", "Adam Wiggins"]
s.date = %q{2010-02-20}
s.description = %q{A simple database agnostic import/export app to transfer data to/from a remote database.}
Expand Down Expand Up @@ -45,10 +45,10 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5}
s.summary = %q{simple database import/export app}
s.test_files = [
"spec/client_session_spec.rb",
"spec/utils_spec.rb",
"spec/base.rb",
"spec/server_spec.rb"
"spec/base.rb",
"spec/client_session_spec.rb",
"spec/server_spec.rb",
"spec/utils_spec.rb"
]

if s.respond_to? :specification_version then
Expand All @@ -73,3 +73,4 @@ Gem::Specification.new do |s|
s.add_dependency(%q<sqlite3-ruby>, ["~> 1.2.0"])
end
end

0 comments on commit a2f1c39

Please sign in to comment.