polysay 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +5 -0
- data/LICENSE.md +17 -0
- data/README.md +28 -0
- data/Rakefile +23 -0
- data/lib/polysay/version.rb +16 -0
- metadata +69 -0
data/.yardopts
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
License
|
2
|
+
=======
|
3
|
+
|
4
|
+
**polysay** is free, open-source software distributed under the terms of the ISC license:
|
5
|
+
|
6
|
+
Copyright (c) 2013, Autumn Perrault <autumn@destellae.net>
|
7
|
+
|
8
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with
|
9
|
+
or without fee is hereby granted, provided that the above copyright notice and this
|
10
|
+
permission notice appear in all copies.
|
11
|
+
|
12
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
13
|
+
THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT
|
14
|
+
SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR
|
15
|
+
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
16
|
+
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
|
17
|
+
OR PERFORMANCE OF THIS SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
polysay
|
2
|
+
=======
|
3
|
+
|
4
|
+
**v0.0.1**
|
5
|
+
|
6
|
+
Synopsis
|
7
|
+
--------
|
8
|
+
|
9
|
+
**polysay** is a Ruby gem which provides internationalization functionality
|
10
|
+
(i18n) in a palatable, simple manner.
|
11
|
+
|
12
|
+
Usage
|
13
|
+
-----
|
14
|
+
|
15
|
+
$ gem install polysay
|
16
|
+
|
17
|
+
Author
|
18
|
+
------
|
19
|
+
|
20
|
+
This gem was written by [Autumn Perrault](https://github.com/noxgirl).
|
21
|
+
|
22
|
+
Legal
|
23
|
+
-----
|
24
|
+
|
25
|
+
Copyright (c) 2013, Autumn Perrault.
|
26
|
+
|
27
|
+
This gem is free software, distributed under the terms of the ISC license, the
|
28
|
+
full terms of which can be found in **LICENSE.md**.
|
data/Rakefile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright (c) 2013, Autumn Perrault <autumn@destellae.net>
|
2
|
+
#
|
3
|
+
# Permission to use, copy, modify, and/or distribute this software for any purpose with
|
4
|
+
# or without fee is hereby granted, provided that the above copyright notice and this
|
5
|
+
# permission notice appear in all copies.
|
6
|
+
#
|
7
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
8
|
+
# THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT
|
9
|
+
# SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR
|
10
|
+
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
11
|
+
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
|
12
|
+
# OR PERFORMANCE OF THIS SOFTWARE.
|
13
|
+
|
14
|
+
require 'rake/testtask'
|
15
|
+
|
16
|
+
task :default => [:test]
|
17
|
+
|
18
|
+
desc 'Test the gem.'
|
19
|
+
Rake::TestTask.new do |t|
|
20
|
+
t.libs.push 'lib'
|
21
|
+
t.pattern = 'spec/*_spec.rb'
|
22
|
+
t.verbose = true
|
23
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright (c) 2013, Autumn Perrault <autumn@destellae.net>
|
2
|
+
#
|
3
|
+
# Permission to use, copy, modify, and/or distribute this software for any purpose with
|
4
|
+
# or without fee is hereby granted, provided that the above copyright notice and this
|
5
|
+
# permission notice appear in all copies.
|
6
|
+
#
|
7
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
8
|
+
# THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT
|
9
|
+
# SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR
|
10
|
+
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
11
|
+
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
|
12
|
+
# OR PERFORMANCE OF THIS SOFTWARE.
|
13
|
+
|
14
|
+
module Polysay
|
15
|
+
VERSION = '0.0.1'
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: polysay
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Autumn Perrault
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-01-16 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: psych
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
description: ! ' A gem for internationalization (i18n) in a simple, palatable form.
|
31
|
+
|
32
|
+
'
|
33
|
+
email: autumn@destellae.net
|
34
|
+
executables: []
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- lib/polysay/version.rb
|
39
|
+
- .yardopts
|
40
|
+
- README.md
|
41
|
+
- LICENSE.md
|
42
|
+
- Rakefile
|
43
|
+
homepage: https://github.com/noxgirl/polysay
|
44
|
+
licenses:
|
45
|
+
- ISC
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
requirements: []
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 1.8.23
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: A simple, minimalist i18n gem.
|
68
|
+
test_files:
|
69
|
+
- Rakefile
|