Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nofxx committed Jul 16, 2010
1 parent 58a0ba9 commit 253d61a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
24 changes: 12 additions & 12 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end
# require 'spec/rake/spectask'
# Spec::Rake::SpecTask.new(:spec) do |spec|
# spec.libs << 'lib' << 'spec'
# spec.spec_files = FileList['spec/**/*_spec.rb']
# end

Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.libs << 'lib' << 'spec'
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end
# Spec::Rake::SpecTask.new(:rcov) do |spec|
# spec.libs << 'lib' << 'spec'
# spec.pattern = 'spec/**/*_spec.rb'
# spec.rcov = true
# end

task :spec => :check_dependencies
# task :spec => :check_dependencies

task :default => :spec
# task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4
12 changes: 8 additions & 4 deletions i18n_sync.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{i18n_sync}
s.version = "0.0.3"
s.version = "0.0.4"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Marcos Piccinini"]
s.date = %q{2010-05-17}
s.date = %q{2010-07-16}
s.default_executable = %q{i18s}
s.description = %q{Gem to sync all locale yml/rb files based on a "master" one.}
s.email = %q{x@nofxx.com}
Expand All @@ -29,14 +29,18 @@ Gem::Specification.new do |s|
"i18n_sync.gemspec",
"lib/i18n_sync.rb",
"spec/fixtures/en.yml",
"spec/fixtures/named.en.yml",
"spec/fixtures/named.pt.yml",
"spec/fixtures/order.en.yml",
"spec/fixtures/order.pt.yml",
"spec/fixtures/pt.yml",
"spec/i18n_sync_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/nofxx/i18n_sync}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Syncs all locale yml/rb files based on a "master" one.}
s.test_files = [
"spec/spec_helper.rb",
Expand All @@ -47,7 +51,7 @@ Gem::Specification.new do |s|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
Expand Down

0 comments on commit 253d61a

Please sign in to comment.