amp-html 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +7 -0
  2. data/.github/issue_template.md +16 -0
  3. data/.github/pull_request_template.md +21 -0
  4. data/.gitignore +13 -0
  5. data/.travis.yml +4 -0
  6. data/CHANGELOG.md +302 -0
  7. data/CONTRIBUTING.md +1 -0
  8. data/DEPRECATIONS.md +9 -0
  9. data/Gemfile +12 -0
  10. data/Gemfile.lock +162 -0
  11. data/INSTALL.md +1 -0
  12. data/LICENSE +21 -0
  13. data/OWNERS.yaml +1 -0
  14. data/README.md +192 -0
  15. data/Rakefile +6 -0
  16. data/amp-html.gemspec +29 -0
  17. data/bin/amp-html +4 -0
  18. data/lib/amp_html.rb +27 -0
  19. data/lib/amp_html/cli.rb +113 -0
  20. data/lib/amp_html/components/docs/README.md +101 -0
  21. data/lib/amp_html/components/docs/ad.md +83 -0
  22. data/lib/amp_html/components/docs/analytics.md +131 -0
  23. data/lib/amp_html/components/docs/anim.md +66 -0
  24. data/lib/amp_html/components/docs/fonts.md +63 -0
  25. data/lib/amp_html/components/docs/forms.md +79 -0
  26. data/lib/amp_html/components/docs/iframe.md +62 -0
  27. data/lib/amp_html/components/docs/javascript.md +71 -0
  28. data/lib/amp_html/components/docs/lists.md +168 -0
  29. data/lib/amp_html/components/docs/media.md +52 -0
  30. data/lib/amp_html/components/docs/mustache.md +46 -0
  31. data/lib/amp_html/components/docs/notifications.md +0 -0
  32. data/lib/amp_html/components/docs/schema.md +80 -0
  33. data/lib/amp_html/components/docs/service_worker.md +60 -0
  34. data/lib/amp_html/components/docs/social.md +130 -0
  35. data/lib/amp_html/components/docs/stylesheets.md +50 -0
  36. data/lib/amp_html/components/help.rb +19 -0
  37. data/lib/amp_html/components/install.rb +34 -0
  38. data/lib/amp_html/components/templates/ERROR.md +5 -0
  39. data/lib/amp_html/components/templates/README.md +12 -0
  40. data/lib/amp_html/configuration.rb +170 -0
  41. data/lib/amp_html/configuration/docs/README.md +0 -0
  42. data/lib/amp_html/configuration/help.rb +11 -0
  43. data/lib/amp_html/helpers/docs/README.md +98 -0
  44. data/lib/amp_html/helpers/docs/amp.md +0 -0
  45. data/lib/amp_html/helpers/docs/amp_ad.md +86 -0
  46. data/lib/amp_html/helpers/docs/amp_analytics.md +76 -0
  47. data/lib/amp_html/helpers/docs/amp_anim.md +68 -0
  48. data/lib/amp_html/helpers/docs/amp_audio.md +54 -0
  49. data/lib/amp_html/helpers/docs/amp_auto_ads.md +43 -0
  50. data/lib/amp_html/helpers/docs/amp_close_user_notification_button.md +0 -0
  51. data/lib/amp_html/helpers/docs/amp_css.md +37 -0
  52. data/lib/amp_html/helpers/docs/amp_css_link.md +0 -0
  53. data/lib/amp_html/helpers/docs/amp_custom_ad.md +0 -0
  54. data/lib/amp_html/helpers/docs/amp_document_link.md +0 -0
  55. data/lib/amp_html/helpers/docs/amp_embed.md +86 -0
  56. data/lib/amp_html/helpers/docs/amp_facebook.md +70 -0
  57. data/lib/amp_html/helpers/docs/amp_fallback.md +47 -0
  58. data/lib/amp_html/helpers/docs/amp_font.md +0 -0
  59. data/lib/amp_html/helpers/docs/amp_font_link.md +0 -0
  60. data/lib/amp_html/helpers/docs/amp_form.md +0 -0
  61. data/lib/amp_html/helpers/docs/amp_form_response.md +0 -0
  62. data/lib/amp_html/helpers/docs/amp_gfycat.md +0 -0
  63. data/lib/amp_html/helpers/docs/amp_global_css.md +0 -0
  64. data/lib/amp_html/helpers/docs/amp_google_analytics.md +0 -0
  65. data/lib/amp_html/helpers/docs/amp_google_font.md +0 -0
  66. data/lib/amp_html/helpers/docs/amp_head.md +0 -0
  67. data/lib/amp_html/helpers/docs/amp_html_doctype.md +0 -0
  68. data/lib/amp_html/helpers/docs/amp_iframe.md +0 -0
  69. data/lib/amp_html/helpers/docs/amp_image.md +0 -0
  70. data/lib/amp_html/helpers/docs/amp_input.md +0 -0
  71. data/lib/amp_html/helpers/docs/amp_instagram.md +0 -0
  72. data/lib/amp_html/helpers/docs/amp_js.md +0 -0
  73. data/lib/amp_html/helpers/docs/amp_link.md +0 -0
  74. data/lib/amp_html/helpers/docs/amp_list.md +0 -0
  75. data/lib/amp_html/helpers/docs/amp_live_list.md +0 -0
  76. data/lib/amp_html/helpers/docs/amp_live_list_items.md +0 -0
  77. data/lib/amp_html/helpers/docs/amp_live_list_pagination.md +0 -0
  78. data/lib/amp_html/helpers/docs/amp_live_list_update.md +0 -0
  79. data/lib/amp_html/helpers/docs/amp_mustache.md +0 -0
  80. data/lib/amp_html/helpers/docs/amp_pin_it.md +0 -0
  81. data/lib/amp_html/helpers/docs/amp_pin_widget.md +0 -0
  82. data/lib/amp_html/helpers/docs/amp_pinterest_follow.md +0 -0
  83. data/lib/amp_html/helpers/docs/amp_pixel.md +0 -0
  84. data/lib/amp_html/helpers/docs/amp_placeholder.md +0 -0
  85. data/lib/amp_html/helpers/docs/amp_reddit.md +0 -0
  86. data/lib/amp_html/helpers/docs/amp_resources.md +0 -0
  87. data/lib/amp_html/helpers/docs/amp_selector.md +0 -0
  88. data/lib/amp_html/helpers/docs/amp_serviceworker.md +0 -0
  89. data/lib/amp_html/helpers/docs/amp_social_share.md +0 -0
  90. data/lib/amp_html/helpers/docs/amp_soundcloud.md +0 -0
  91. data/lib/amp_html/helpers/docs/amp_twitter.md +0 -0
  92. data/lib/amp_html/helpers/docs/amp_user_notification.md +0 -0
  93. data/lib/amp_html/helpers/docs/amp_video.md +0 -0
  94. data/lib/amp_html/helpers/docs/amp_video_ad.md +0 -0
  95. data/lib/amp_html/helpers/docs/amp_vine.md +0 -0
  96. data/lib/amp_html/helpers/docs/amp_youtube.md +0 -0
  97. data/lib/amp_html/helpers/docs/audio_tag.md +0 -0
  98. data/lib/amp_html/helpers/docs/canonical_document_link.md +0 -0
  99. data/lib/amp_html/helpers/docs/form_tag.md +0 -0
  100. data/lib/amp_html/helpers/docs/image_tag.md +0 -0
  101. data/lib/amp_html/helpers/docs/input_tag.md +0 -0
  102. data/lib/amp_html/helpers/docs/javascript_include_tag.md +0 -0
  103. data/lib/amp_html/helpers/docs/noscript_tag.md +0 -0
  104. data/lib/amp_html/helpers/docs/schema_tag.md +0 -0
  105. data/lib/amp_html/helpers/docs/stylesheet_link_tag.md +0 -0
  106. data/lib/amp_html/helpers/docs/video_tag.md +0 -0
  107. data/lib/amp_html/helpers/help.rb +23 -0
  108. data/lib/amp_html/root.rb +7 -0
  109. data/lib/amp_html/test.rb +169 -0
  110. data/lib/amp_html/test/help.rb +11 -0
  111. data/lib/amp_html/test/templates/README.md +43 -0
  112. data/lib/amp_html/test/templates/css/!important.md +1 -0
  113. data/lib/amp_html/test/templates/css/-amp-.md +1 -0
  114. data/lib/amp_html/test/templates/css/-moz-binding.md +1 -0
  115. data/lib/amp_html/test/templates/css/@import.md +1 -0
  116. data/lib/amp_html/test/templates/css/behavior.md +1 -0
  117. data/lib/amp_html/test/templates/css/filter.md +1 -0
  118. data/lib/amp_html/test/templates/css/i-amp-.md +1 -0
  119. data/lib/amp_html/test/templates/css/overflow.md +1 -0
  120. data/lib/amp_html/test/templates/html/applet.md +1 -0
  121. data/lib/amp_html/test/templates/html/audio.md +1 -0
  122. data/lib/amp_html/test/templates/html/base.md +1 -0
  123. data/lib/amp_html/test/templates/html/embed.md +1 -0
  124. data/lib/amp_html/test/templates/html/frame.md +1 -0
  125. data/lib/amp_html/test/templates/html/frameset.md +1 -0
  126. data/lib/amp_html/test/templates/html/http-equiv.md +1 -0
  127. data/lib/amp_html/test/templates/html/iframe.md +1 -0
  128. data/lib/amp_html/test/templates/html/img.md +1 -0
  129. data/lib/amp_html/test/templates/html/javascript_include_tag.md +1 -0
  130. data/lib/amp_html/test/templates/html/object.md +1 -0
  131. data/lib/amp_html/test/templates/html/onclick.md +1 -0
  132. data/lib/amp_html/test/templates/html/onmousehover.md +1 -0
  133. data/lib/amp_html/test/templates/html/param.md +1 -0
  134. data/lib/amp_html/test/templates/html/stylesheet_link_tag.md +1 -0
  135. data/lib/amp_html/test/templates/html/video.md +1 -0
  136. data/lib/amp_html/test/templates/markup/!doctype.md +1 -0
  137. data/lib/amp_html/test/templates/markup/amp_document_link.md +1 -0
  138. data/lib/amp_html/test/templates/markup/amp_head.md +1 -0
  139. data/lib/amp_html/test/templates/markup/amp_html_doctype.md +1 -0
  140. data/lib/amp_html/test/templates/markup/canonical_document_link.md +1 -0
  141. data/lib/amp_html/test/templates/markup/head_body.md +1 -0
  142. data/lib/amp_html/test/templates/markup/html.md +1 -0
  143. data/lib/amp_html/test/templates/markup/meta_viewport.md +1 -0
  144. data/lib/amp_html/validate.rb +46 -0
  145. data/lib/amp_html/validate/help.rb +11 -0
  146. data/lib/amp_html/validate/templates/README.md +32 -0
  147. data/lib/amp_html/version.rb +13 -0
  148. data/lib/generators/amphtml/assets_generator.rb +31 -0
  149. data/lib/generators/amphtml/bundle_generator.rb +50 -0
  150. data/lib/generators/amphtml/components_generator.rb +84 -0
  151. data/lib/generators/amphtml/helpers_generator.rb +32 -0
  152. data/lib/generators/amphtml/install_generator.rb +53 -0
  153. data/lib/generators/amphtml/views_generator.rb +62 -0
  154. data/lib/generators/templates/assets/README.md +0 -0
  155. data/lib/generators/templates/assets/stylesheets/application.scss +15 -0
  156. data/lib/generators/templates/components/README.md +0 -0
  157. data/lib/generators/templates/components/assets/javascripts/application.js +15 -0
  158. data/lib/generators/templates/components/helpers/ad_tag_helper.rb +83 -0
  159. data/lib/generators/templates/components/helpers/analytics_tag_helper.rb +30 -0
  160. data/lib/generators/templates/components/helpers/anim_tag_helper.rb +42 -0
  161. data/lib/generators/templates/components/helpers/iframe_tag_helper.rb +27 -0
  162. data/lib/generators/templates/components/helpers/javascript_tag_helper.rb +12 -0
  163. data/lib/generators/templates/components/helpers/lists_tag_helper.rb +82 -0
  164. data/lib/generators/templates/components/helpers/notification_tag_helper.rb +16 -0
  165. data/lib/generators/templates/components/helpers/serviceworker_tag_helper.rb +15 -0
  166. data/lib/generators/templates/components/helpers/social_tag_helper.rb +228 -0
  167. data/lib/generators/templates/components/public/remote.html +28 -0
  168. data/lib/generators/templates/components/views/_components.html.erb +141 -0
  169. data/lib/generators/templates/components/views/_google_analytics.html.erb +23 -0
  170. data/lib/generators/templates/helpers/README.md +1 -0
  171. data/lib/generators/templates/helpers/amp/fallback_tag_helper.rb +16 -0
  172. data/lib/generators/templates/helpers/amp/font_tag_helper.rb +37 -0
  173. data/lib/generators/templates/helpers/amp/link_tag_helper.rb +11 -0
  174. data/lib/generators/templates/helpers/amp/mustache_tag_helper.rb +13 -0
  175. data/lib/generators/templates/helpers/amp/noscript_tag_helper.rb +13 -0
  176. data/lib/generators/templates/helpers/amp/placeholder_tag_helper.rb +16 -0
  177. data/lib/generators/templates/helpers/amp/schema_tag_helper.rb +16 -0
  178. data/lib/generators/templates/helpers/amp/stylesheets_tag_helper.rb +21 -0
  179. data/lib/generators/templates/helpers/amp_tag_helper.rb.erb +65 -0
  180. data/lib/generators/templates/helpers/asset_tag_helper.rb.erb +119 -0
  181. data/lib/generators/templates/helpers/form_tag_helper.rb.erb +79 -0
  182. data/lib/generators/templates/install/README.md +1 -0
  183. data/lib/generators/templates/install/amphtml.rb.erb +19 -0
  184. data/lib/generators/templates/install/amphtml.yml.erb +189 -0
  185. data/lib/generators/templates/views/README.md +1 -0
  186. data/lib/generators/templates/views/application.html.erb +71 -0
  187. data/lib/generators/templates/views/application/_head.html.erb +47 -0
  188. data/lib/generators/templates/views/application/_resources.html.erb +16 -0
  189. data/lib/generators/templates/views/application/_schema.html.erb +6 -0
  190. data/lib/generators/templates/views/config/mime_types.rb +8 -0
  191. metadata +294 -0
metadata ADDED
@@ -0,0 +1,294 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: amp-html
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.7
5
+ platform: ruby
6
+ authors:
7
+ - Jonas Hübotter
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-08-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.19.4
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.19.4
41
+ - !ruby/object:Gem::Dependency
42
+ name: launchy
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.4'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: highline
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
69
+ description: "[BETA] AmpHtml is a universal solution to integrate the AMP Project
70
+ (Accelerated Mobile Pages Project) into your Rails app with ease. It enables you
71
+ to quickly spin-up, build and test your app with AMP, while fulfilling the app's
72
+ unique requirements. It comes with a bunch of superpowers like user authentication,
73
+ notifications, blogs, animations and support for assets in AMP. Make your app consistently
74
+ fast, beautiful and high-performing across devices and distribution platforms."
75
+ email: developer@slooob.com
76
+ executables:
77
+ - amp-html
78
+ extensions: []
79
+ extra_rdoc_files: []
80
+ files:
81
+ - ".github/issue_template.md"
82
+ - ".github/pull_request_template.md"
83
+ - ".gitignore"
84
+ - ".travis.yml"
85
+ - CHANGELOG.md
86
+ - CONTRIBUTING.md
87
+ - DEPRECATIONS.md
88
+ - Gemfile
89
+ - Gemfile.lock
90
+ - INSTALL.md
91
+ - LICENSE
92
+ - OWNERS.yaml
93
+ - README.md
94
+ - Rakefile
95
+ - amp-html.gemspec
96
+ - bin/amp-html
97
+ - lib/amp_html.rb
98
+ - lib/amp_html/cli.rb
99
+ - lib/amp_html/components/docs/README.md
100
+ - lib/amp_html/components/docs/ad.md
101
+ - lib/amp_html/components/docs/analytics.md
102
+ - lib/amp_html/components/docs/anim.md
103
+ - lib/amp_html/components/docs/fonts.md
104
+ - lib/amp_html/components/docs/forms.md
105
+ - lib/amp_html/components/docs/iframe.md
106
+ - lib/amp_html/components/docs/javascript.md
107
+ - lib/amp_html/components/docs/lists.md
108
+ - lib/amp_html/components/docs/media.md
109
+ - lib/amp_html/components/docs/mustache.md
110
+ - lib/amp_html/components/docs/notifications.md
111
+ - lib/amp_html/components/docs/schema.md
112
+ - lib/amp_html/components/docs/service_worker.md
113
+ - lib/amp_html/components/docs/social.md
114
+ - lib/amp_html/components/docs/stylesheets.md
115
+ - lib/amp_html/components/help.rb
116
+ - lib/amp_html/components/install.rb
117
+ - lib/amp_html/components/templates/ERROR.md
118
+ - lib/amp_html/components/templates/README.md
119
+ - lib/amp_html/configuration.rb
120
+ - lib/amp_html/configuration/docs/README.md
121
+ - lib/amp_html/configuration/help.rb
122
+ - lib/amp_html/helpers/docs/README.md
123
+ - lib/amp_html/helpers/docs/amp.md
124
+ - lib/amp_html/helpers/docs/amp_ad.md
125
+ - lib/amp_html/helpers/docs/amp_analytics.md
126
+ - lib/amp_html/helpers/docs/amp_anim.md
127
+ - lib/amp_html/helpers/docs/amp_audio.md
128
+ - lib/amp_html/helpers/docs/amp_auto_ads.md
129
+ - lib/amp_html/helpers/docs/amp_close_user_notification_button.md
130
+ - lib/amp_html/helpers/docs/amp_css.md
131
+ - lib/amp_html/helpers/docs/amp_css_link.md
132
+ - lib/amp_html/helpers/docs/amp_custom_ad.md
133
+ - lib/amp_html/helpers/docs/amp_document_link.md
134
+ - lib/amp_html/helpers/docs/amp_embed.md
135
+ - lib/amp_html/helpers/docs/amp_facebook.md
136
+ - lib/amp_html/helpers/docs/amp_fallback.md
137
+ - lib/amp_html/helpers/docs/amp_font.md
138
+ - lib/amp_html/helpers/docs/amp_font_link.md
139
+ - lib/amp_html/helpers/docs/amp_form.md
140
+ - lib/amp_html/helpers/docs/amp_form_response.md
141
+ - lib/amp_html/helpers/docs/amp_gfycat.md
142
+ - lib/amp_html/helpers/docs/amp_global_css.md
143
+ - lib/amp_html/helpers/docs/amp_google_analytics.md
144
+ - lib/amp_html/helpers/docs/amp_google_font.md
145
+ - lib/amp_html/helpers/docs/amp_head.md
146
+ - lib/amp_html/helpers/docs/amp_html_doctype.md
147
+ - lib/amp_html/helpers/docs/amp_iframe.md
148
+ - lib/amp_html/helpers/docs/amp_image.md
149
+ - lib/amp_html/helpers/docs/amp_input.md
150
+ - lib/amp_html/helpers/docs/amp_instagram.md
151
+ - lib/amp_html/helpers/docs/amp_js.md
152
+ - lib/amp_html/helpers/docs/amp_link.md
153
+ - lib/amp_html/helpers/docs/amp_list.md
154
+ - lib/amp_html/helpers/docs/amp_live_list.md
155
+ - lib/amp_html/helpers/docs/amp_live_list_items.md
156
+ - lib/amp_html/helpers/docs/amp_live_list_pagination.md
157
+ - lib/amp_html/helpers/docs/amp_live_list_update.md
158
+ - lib/amp_html/helpers/docs/amp_mustache.md
159
+ - lib/amp_html/helpers/docs/amp_pin_it.md
160
+ - lib/amp_html/helpers/docs/amp_pin_widget.md
161
+ - lib/amp_html/helpers/docs/amp_pinterest_follow.md
162
+ - lib/amp_html/helpers/docs/amp_pixel.md
163
+ - lib/amp_html/helpers/docs/amp_placeholder.md
164
+ - lib/amp_html/helpers/docs/amp_reddit.md
165
+ - lib/amp_html/helpers/docs/amp_resources.md
166
+ - lib/amp_html/helpers/docs/amp_selector.md
167
+ - lib/amp_html/helpers/docs/amp_serviceworker.md
168
+ - lib/amp_html/helpers/docs/amp_social_share.md
169
+ - lib/amp_html/helpers/docs/amp_soundcloud.md
170
+ - lib/amp_html/helpers/docs/amp_twitter.md
171
+ - lib/amp_html/helpers/docs/amp_user_notification.md
172
+ - lib/amp_html/helpers/docs/amp_video.md
173
+ - lib/amp_html/helpers/docs/amp_video_ad.md
174
+ - lib/amp_html/helpers/docs/amp_vine.md
175
+ - lib/amp_html/helpers/docs/amp_youtube.md
176
+ - lib/amp_html/helpers/docs/audio_tag.md
177
+ - lib/amp_html/helpers/docs/canonical_document_link.md
178
+ - lib/amp_html/helpers/docs/form_tag.md
179
+ - lib/amp_html/helpers/docs/image_tag.md
180
+ - lib/amp_html/helpers/docs/input_tag.md
181
+ - lib/amp_html/helpers/docs/javascript_include_tag.md
182
+ - lib/amp_html/helpers/docs/noscript_tag.md
183
+ - lib/amp_html/helpers/docs/schema_tag.md
184
+ - lib/amp_html/helpers/docs/stylesheet_link_tag.md
185
+ - lib/amp_html/helpers/docs/video_tag.md
186
+ - lib/amp_html/helpers/help.rb
187
+ - lib/amp_html/root.rb
188
+ - lib/amp_html/test.rb
189
+ - lib/amp_html/test/help.rb
190
+ - lib/amp_html/test/templates/README.md
191
+ - lib/amp_html/test/templates/css/!important.md
192
+ - lib/amp_html/test/templates/css/-amp-.md
193
+ - lib/amp_html/test/templates/css/-moz-binding.md
194
+ - lib/amp_html/test/templates/css/@import.md
195
+ - lib/amp_html/test/templates/css/behavior.md
196
+ - lib/amp_html/test/templates/css/filter.md
197
+ - lib/amp_html/test/templates/css/i-amp-.md
198
+ - lib/amp_html/test/templates/css/overflow.md
199
+ - lib/amp_html/test/templates/html/applet.md
200
+ - lib/amp_html/test/templates/html/audio.md
201
+ - lib/amp_html/test/templates/html/base.md
202
+ - lib/amp_html/test/templates/html/embed.md
203
+ - lib/amp_html/test/templates/html/frame.md
204
+ - lib/amp_html/test/templates/html/frameset.md
205
+ - lib/amp_html/test/templates/html/http-equiv.md
206
+ - lib/amp_html/test/templates/html/iframe.md
207
+ - lib/amp_html/test/templates/html/img.md
208
+ - lib/amp_html/test/templates/html/javascript_include_tag.md
209
+ - lib/amp_html/test/templates/html/object.md
210
+ - lib/amp_html/test/templates/html/onclick.md
211
+ - lib/amp_html/test/templates/html/onmousehover.md
212
+ - lib/amp_html/test/templates/html/param.md
213
+ - lib/amp_html/test/templates/html/stylesheet_link_tag.md
214
+ - lib/amp_html/test/templates/html/video.md
215
+ - lib/amp_html/test/templates/markup/!doctype.md
216
+ - lib/amp_html/test/templates/markup/amp_document_link.md
217
+ - lib/amp_html/test/templates/markup/amp_head.md
218
+ - lib/amp_html/test/templates/markup/amp_html_doctype.md
219
+ - lib/amp_html/test/templates/markup/canonical_document_link.md
220
+ - lib/amp_html/test/templates/markup/head_body.md
221
+ - lib/amp_html/test/templates/markup/html.md
222
+ - lib/amp_html/test/templates/markup/meta_viewport.md
223
+ - lib/amp_html/validate.rb
224
+ - lib/amp_html/validate/help.rb
225
+ - lib/amp_html/validate/templates/README.md
226
+ - lib/amp_html/version.rb
227
+ - lib/generators/amphtml/assets_generator.rb
228
+ - lib/generators/amphtml/bundle_generator.rb
229
+ - lib/generators/amphtml/components_generator.rb
230
+ - lib/generators/amphtml/helpers_generator.rb
231
+ - lib/generators/amphtml/install_generator.rb
232
+ - lib/generators/amphtml/views_generator.rb
233
+ - lib/generators/templates/assets/README.md
234
+ - lib/generators/templates/assets/stylesheets/application.scss
235
+ - lib/generators/templates/components/README.md
236
+ - lib/generators/templates/components/assets/javascripts/application.js
237
+ - lib/generators/templates/components/helpers/ad_tag_helper.rb
238
+ - lib/generators/templates/components/helpers/analytics_tag_helper.rb
239
+ - lib/generators/templates/components/helpers/anim_tag_helper.rb
240
+ - lib/generators/templates/components/helpers/iframe_tag_helper.rb
241
+ - lib/generators/templates/components/helpers/javascript_tag_helper.rb
242
+ - lib/generators/templates/components/helpers/lists_tag_helper.rb
243
+ - lib/generators/templates/components/helpers/notification_tag_helper.rb
244
+ - lib/generators/templates/components/helpers/serviceworker_tag_helper.rb
245
+ - lib/generators/templates/components/helpers/social_tag_helper.rb
246
+ - lib/generators/templates/components/public/remote.html
247
+ - lib/generators/templates/components/views/_components.html.erb
248
+ - lib/generators/templates/components/views/_google_analytics.html.erb
249
+ - lib/generators/templates/helpers/README.md
250
+ - lib/generators/templates/helpers/amp/fallback_tag_helper.rb
251
+ - lib/generators/templates/helpers/amp/font_tag_helper.rb
252
+ - lib/generators/templates/helpers/amp/link_tag_helper.rb
253
+ - lib/generators/templates/helpers/amp/mustache_tag_helper.rb
254
+ - lib/generators/templates/helpers/amp/noscript_tag_helper.rb
255
+ - lib/generators/templates/helpers/amp/placeholder_tag_helper.rb
256
+ - lib/generators/templates/helpers/amp/schema_tag_helper.rb
257
+ - lib/generators/templates/helpers/amp/stylesheets_tag_helper.rb
258
+ - lib/generators/templates/helpers/amp_tag_helper.rb.erb
259
+ - lib/generators/templates/helpers/asset_tag_helper.rb.erb
260
+ - lib/generators/templates/helpers/form_tag_helper.rb.erb
261
+ - lib/generators/templates/install/README.md
262
+ - lib/generators/templates/install/amphtml.rb.erb
263
+ - lib/generators/templates/install/amphtml.yml.erb
264
+ - lib/generators/templates/views/README.md
265
+ - lib/generators/templates/views/application.html.erb
266
+ - lib/generators/templates/views/application/_head.html.erb
267
+ - lib/generators/templates/views/application/_resources.html.erb
268
+ - lib/generators/templates/views/application/_schema.html.erb
269
+ - lib/generators/templates/views/config/mime_types.rb
270
+ homepage: https://github.com/slooob/amp-html
271
+ licenses:
272
+ - MIT
273
+ metadata: {}
274
+ post_install_message: "**Thank you for installing amp-html!**\n"
275
+ rdoc_options: []
276
+ require_paths:
277
+ - lib
278
+ required_ruby_version: !ruby/object:Gem::Requirement
279
+ requirements:
280
+ - - ">="
281
+ - !ruby/object:Gem::Version
282
+ version: '2.0'
283
+ required_rubygems_version: !ruby/object:Gem::Requirement
284
+ requirements:
285
+ - - ">="
286
+ - !ruby/object:Gem::Version
287
+ version: '0'
288
+ requirements: []
289
+ rubyforge_project:
290
+ rubygems_version: 2.6.12
291
+ signing_key:
292
+ specification_version: 4
293
+ summary: Reliable and high-performant apps with AMP & Rails.
294
+ test_files: []