sangha_accessibility 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 326b68b64dbae1fb3371c1e198682066b9d3f601
|
|
4
|
+
data.tar.gz: 2d3175fc25e65f75737302105d96e1d6f9b7d6c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2e0e92f128725d8e5249814d92b6101b00f8ea7262419c09101dafdd2f9d2025be7cef5d49f1c4f4480f27b19192aebe3ebbe8cf6a91bc33077b220ed993337
|
|
7
|
+
data.tar.gz: 41976cb802625cd6c2b7f7bb381d4cd04af2b42e60f78b6573b78d5344e615ce4c14f648df4730b3341d24522797233163715615de6be77e48f2b40494d8059a
|
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
require 'action_view/helpers'
|
|
2
2
|
require 'action_view/context'
|
|
3
3
|
|
|
4
|
-
module SanghaAccessibility
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
module SanghaAccessibility
|
|
5
|
+
module ActionView
|
|
6
|
+
module Helpers
|
|
7
|
+
def new_method_from_gem
|
|
8
|
+
"Hello World!"
|
|
9
|
+
end
|
|
10
|
+
# class PGen
|
|
11
|
+
# include ActionView::Helpers
|
|
12
|
+
# include ActionView::Context
|
|
13
|
+
#
|
|
9
14
|
# extend ActionView::Helpers
|
|
10
15
|
# extend ActionView::Context
|
|
11
|
-
|
|
12
|
-
def p_for(value)
|
|
13
|
-
content_tag(:p, value)
|
|
14
|
-
end
|
|
16
|
+
#
|
|
17
|
+
# def p_for(value)
|
|
18
|
+
# content_tag(:p, value)
|
|
19
|
+
# end
|
|
20
|
+
# end
|
|
21
|
+
end
|
|
15
22
|
end
|
|
16
23
|
end
|