synergy_russian 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/CHANGELOG +113 -0
  2. data/LICENSE +20 -0
  3. data/README.textile +272 -0
  4. data/Rakefile +55 -0
  5. data/TODO +10 -0
  6. data/init.rb +3 -0
  7. data/lib/russian.rb +118 -0
  8. data/lib/russian/action_view_ext/helpers/date_helper.rb +112 -0
  9. data/lib/russian/active_record_ext/custom_error_message.rb +163 -0
  10. data/lib/russian/active_support_ext/parameterize.rb +31 -0
  11. data/lib/russian/backend/advanced.rb +134 -0
  12. data/lib/russian/locale/actionview.yml +162 -0
  13. data/lib/russian/locale/activerecord.yml +95 -0
  14. data/lib/russian/locale/activesupport.yml +16 -0
  15. data/lib/russian/locale/datetime.yml +49 -0
  16. data/lib/russian/locale/pluralize.rb +25 -0
  17. data/lib/russian/transliteration.rb +72 -0
  18. data/lib/vendor/i18n/MIT-LICENSE +20 -0
  19. data/lib/vendor/i18n/README.textile +20 -0
  20. data/lib/vendor/i18n/Rakefile +5 -0
  21. data/lib/vendor/i18n/i18n.gemspec +27 -0
  22. data/lib/vendor/i18n/lib/i18n.rb +199 -0
  23. data/lib/vendor/i18n/lib/i18n/backend/simple.rb +214 -0
  24. data/lib/vendor/i18n/lib/i18n/exceptions.rb +53 -0
  25. data/lib/vendor/i18n/test/all.rb +5 -0
  26. data/lib/vendor/i18n/test/i18n_exceptions_test.rb +100 -0
  27. data/lib/vendor/i18n/test/i18n_test.rb +125 -0
  28. data/lib/vendor/i18n/test/locale/en.rb +1 -0
  29. data/lib/vendor/i18n/test/locale/en.yml +3 -0
  30. data/lib/vendor/i18n/test/simple_backend_test.rb +568 -0
  31. data/spec/fixtures/en.yml +4 -0
  32. data/spec/fixtures/ru.yml +4 -0
  33. data/spec/i18n/locale/datetime_spec.rb +99 -0
  34. data/spec/i18n/locale/pluralization_spec.rb +28 -0
  35. data/spec/locale_spec.rb +129 -0
  36. data/spec/russian_spec.rb +136 -0
  37. data/spec/spec_helper.rb +7 -0
  38. data/spec/transliteration_spec.rb +51 -0
  39. metadata +102 -0
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: synergy_russian
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 2
8
+ - 8
9
+ version: 0.2.8
10
+ platform: ruby
11
+ authors:
12
+ - Yaroslav Markin
13
+ autorequire: synergy_russian
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-06-23 00:00:00 +04:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: Build of edge version of russian gem, for use with Synergy e-commerce platform
22
+ email: yaroslav@markin.net
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - README.textile
29
+ - LICENSE
30
+ - CHANGELOG
31
+ - TODO
32
+ files:
33
+ - LICENSE
34
+ - README.textile
35
+ - Rakefile
36
+ - CHANGELOG
37
+ - TODO
38
+ - init.rb
39
+ - lib/russian.rb
40
+ - lib/russian/backend/advanced.rb
41
+ - lib/russian/locale/datetime.yml
42
+ - lib/russian/locale/activesupport.yml
43
+ - lib/russian/locale/pluralize.rb
44
+ - lib/russian/locale/actionview.yml
45
+ - lib/russian/locale/activerecord.yml
46
+ - lib/russian/action_view_ext/helpers/date_helper.rb
47
+ - lib/russian/active_record_ext/custom_error_message.rb
48
+ - lib/russian/transliteration.rb
49
+ - lib/russian/active_support_ext/parameterize.rb
50
+ - lib/vendor/i18n/lib/i18n.rb
51
+ - lib/vendor/i18n/lib/i18n/backend/simple.rb
52
+ - lib/vendor/i18n/lib/i18n/exceptions.rb
53
+ - lib/vendor/i18n/MIT-LICENSE
54
+ - lib/vendor/i18n/i18n.gemspec
55
+ - lib/vendor/i18n/Rakefile
56
+ - lib/vendor/i18n/test/locale/en.rb
57
+ - lib/vendor/i18n/test/locale/en.yml
58
+ - lib/vendor/i18n/test/all.rb
59
+ - lib/vendor/i18n/test/i18n_exceptions_test.rb
60
+ - lib/vendor/i18n/test/i18n_test.rb
61
+ - lib/vendor/i18n/test/simple_backend_test.rb
62
+ - lib/vendor/i18n/README.textile
63
+ - spec/transliteration_spec.rb
64
+ - spec/fixtures/ru.yml
65
+ - spec/fixtures/en.yml
66
+ - spec/russian_spec.rb
67
+ - spec/locale_spec.rb
68
+ - spec/spec_helper.rb
69
+ - spec/i18n/locale/pluralization_spec.rb
70
+ - spec/i18n/locale/datetime_spec.rb
71
+ has_rdoc: true
72
+ homepage: http://github.com/yaroslav/russian/
73
+ licenses: []
74
+
75
+ post_install_message:
76
+ rdoc_options: []
77
+
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ segments:
92
+ - 0
93
+ version: "0"
94
+ requirements: []
95
+
96
+ rubyforge_project:
97
+ rubygems_version: 1.3.6
98
+ signing_key:
99
+ specification_version: 3
100
+ summary: Russian language support for Ruby and Rails
101
+ test_files: []
102
+