brnumeros 2.1.8 → 2.1.9

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  require 'rubygems'
2
3
  require 'rake'
3
4
  require 'rake/testtask'
@@ -83,15 +84,7 @@ end
83
84
  # end
84
85
  #
85
86
 
86
- desc "Publish the release files to RubyForge."
87
+ desc "Publish the new release"
87
88
  task :release => [ :package ] do
88
- require 'rubyforge'
89
- require 'rake/contrib/rubyforgepublisher'
90
-
91
- packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
92
-
93
- rubyforge = RubyForge.new
94
- rubyforge.configure
95
- rubyforge.login
96
- rubyforge.add_release("brazilian-rails", PKG_NAME, "REL #{PKG_VERSION}", *packages)
89
+ system("cd pkg/ && gem push #{PKG_NAME}-#{PKG_VERSION}.gem")
97
90
  end
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  module Extenso
2
3
  @@unidade = {
3
4
  0 => "zero",
@@ -60,12 +61,12 @@ module Extenso
60
61
  # Extenso.por_extenso(100) ==> "cem"
61
62
  # Extenso.por_extenso(158) ==> "cento e cinquenta e oito"
62
63
  def Extenso.por_extenso(numero)
63
- negativo=(numero<0)?"menos ":""
64
+ negativo=(numero<0)? "menos " : ""
64
65
  n=numero.to_i.abs
65
66
  return case n
66
- when 0..9: negativo + @@unidade[n].to_s
67
- when 10..19: negativo + @@dezena[n].to_s
68
- when 20..99:
67
+ when 0..9 then negativo + @@unidade[n].to_s
68
+ when 10..19 then negativo + @@dezena[n].to_s
69
+ when 20..99
69
70
  v=n % 10
70
71
  if v== 0
71
72
  negativo + @@dezena[n].to_s
@@ -121,8 +122,8 @@ module ExtensoReal
121
122
  # Extenso.por_extenso_em_reais(100) ==> "cem reais"
122
123
  # Extenso.por_extenso_em_reais(100.58) ==> "cem reais e cinquenta e oito centavos"
123
124
  def ExtensoReal.por_extenso_em_reais(valor)
124
- negativo=(valor<0)?" negativo":""
125
- negativos=(valor<0)?" negativos":""
125
+ negativo=(valor<0)? " negativo" : ""
126
+ negativos=(valor<0)? " negativos" : ""
126
127
  valor = valor.abs
127
128
  return 'grátis' if valor == 0
128
129
  case valor
@@ -138,9 +139,9 @@ module ExtensoReal
138
139
  real,cents=("%.2f" % valor).split(/\./).map{ |m| m.to_i}
139
140
  valor_cents=Extenso.por_extenso(cents%100)
140
141
  valor_cents+= case cents.to_i%100
141
- when 0: ""
142
- when 1: " centavo"
143
- when 2..99: " centavos"
142
+ when 0 then ""
143
+ when 1 then " centavo"
144
+ when 2..99 then " centavos"
144
145
  end
145
146
 
146
147
  if real.to_i > 0
@@ -2,7 +2,7 @@ module BrNumeros
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 1
5
- TINY = 8
5
+ TINY = 9
6
6
 
7
7
  STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
8
8
  end
data/test/number_test.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  require File.dirname(__FILE__) + '/test_helper'
2
3
 
3
4
  class NumberTest < Test::Unit::TestCase
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brnumeros
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.8
4
+ version: 2.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Marcos Tapaj\xC3\xB3s"
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-04-16 00:00:00 -03:00
15
+ date: 2009-12-04 00:00:00 -02:00
16
16
  default_executable:
17
17
  dependencies: []
18
18
 
@@ -29,7 +29,6 @@ files:
29
29
  - README
30
30
  - CHANGELOG
31
31
  - MIT-LICENSE
32
- - lib/brnumeros
33
32
  - lib/brnumeros/number_portuguese.rb
34
33
  - lib/brnumeros/version.rb
35
34
  - lib/brnumeros.rb
@@ -37,6 +36,8 @@ files:
37
36
  - test/test_helper.rb
38
37
  has_rdoc: true
39
38
  homepage: http://www.improveit.com.br/software_livre/brazilian_rails
39
+ licenses: []
40
+
40
41
  post_install_message:
41
42
  rdoc_options: []
42
43
 
@@ -57,9 +58,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
57
58
  requirements:
58
59
  - none
59
60
  rubyforge_project: brnumeros
60
- rubygems_version: 1.3.1
61
+ rubygems_version: 1.3.5
61
62
  signing_key:
62
- specification_version: 2
63
+ specification_version: 3
63
64
  summary: "brnumeros \xC3\xA9 uma das gems que compoem o Brazilian Rails"
64
65
  test_files: []
65
66