rubyanh-presenter 0.2.3 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/lib/presenter.rb +1 -1
- data/lib/presenter/version.rb +3 -0
- metadata +14 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e68d332b8b6341ad319c0869b18bff79b842b77
|
4
|
+
data.tar.gz: a8add0a593e7a82da3593af10f6668e255571749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48e331e2f1a165885da7421100a18fac7114fd2693d5878b398ef42391fb637cb610d3225799ad40c8155c72900578d7192d53e8cbb3ff12214c2f781fbdbc15
|
7
|
+
data.tar.gz: 3ebfc17a6bc90814637192c24adb6526bda0ab98d731d3cc1eae6ac6b196701158581cbbd01431c536a71516017df3139bed7f53e76129e4cbcbca8ca5b3c73f
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Giang Thai Cuong
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/lib/presenter.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubyanh-presenter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Giang Thai Cuong
|
@@ -9,85 +9,47 @@ autorequire:
|
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-12-16 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bundler
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.13'
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '1.13'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '10.0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '10.0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rspec
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '3.0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '3.0'
|
12
|
+
dependencies: []
|
55
13
|
description: Rubyanh Presenter is an useful way to perform the view related logic
|
56
14
|
clearly instead of hard-coding the logic into the view or storing the logic in the
|
57
|
-
model
|
58
|
-
email:
|
59
|
-
- thaicuong.giang@gmail.com
|
15
|
+
model.
|
16
|
+
email: thaicuong.giang@gmail.com
|
60
17
|
executables: []
|
61
18
|
extensions: []
|
62
|
-
extra_rdoc_files:
|
19
|
+
extra_rdoc_files:
|
20
|
+
- README.md
|
21
|
+
- LICENSE.txt
|
63
22
|
files:
|
23
|
+
- LICENSE.txt
|
64
24
|
- README.md
|
65
25
|
- lib/presenter.rb
|
66
26
|
- lib/presenter/base.rb
|
67
27
|
- lib/presenter/null.rb
|
68
28
|
- lib/presenter/presentable.rb
|
29
|
+
- lib/presenter/version.rb
|
69
30
|
homepage: https://github.com/rubyanh/presenter
|
70
31
|
licenses:
|
71
32
|
- MIT
|
72
33
|
metadata: {}
|
73
34
|
post_install_message:
|
74
|
-
rdoc_options:
|
35
|
+
rdoc_options:
|
36
|
+
- "--charset=UTF-8"
|
75
37
|
require_paths:
|
76
38
|
- lib
|
77
39
|
required_ruby_version: !ruby/object:Gem::Requirement
|
78
40
|
requirements:
|
79
41
|
- - ">="
|
80
42
|
- !ruby/object:Gem::Version
|
81
|
-
version: 2.
|
43
|
+
version: 2.0.0
|
82
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
45
|
requirements:
|
84
46
|
- - ">="
|
85
47
|
- !ruby/object:Gem::Version
|
86
|
-
version:
|
48
|
+
version: '0'
|
87
49
|
requirements: []
|
88
50
|
rubyforge_project:
|
89
51
|
rubygems_version: 2.5.1
|
90
52
|
signing_key:
|
91
|
-
specification_version:
|
53
|
+
specification_version: 2
|
92
54
|
summary: Simple view presenters for your Rails application.
|
93
55
|
test_files: []
|