polymer-rails 1.2.4.1 → 1.3.0

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: 601eec82c831978d825d17a702c5fa3c40198063
4
- data.tar.gz: 416292a654344ae12df8be3ceac9cd96d31dd9a6
3
+ metadata.gz: 124a47c6271ae558365cbfa14d6bdbaceb5d687a
4
+ data.tar.gz: a1911353eba411bbed8fd0dc5beb88ca8e706d6d
5
5
  SHA512:
6
- metadata.gz: a4fc5d7d0a146f8522adcf5c899bee9e0f6d2794f00ee942af31a8374f881f439275279e414e3cb37c66c343185b8e30c47e68522912f1bd9d64dc6d8a21de5f
7
- data.tar.gz: efc997ad4674c874d416d229923549037d0ac88a350a83fc4e71ac501c2d0ba4337e504eda12776c6233c272e59baae56a68af590b855de0a9f3889dec3991e6
6
+ metadata.gz: 87516d45b8d19a09f32ec79ca8cb6ca57f2a9d0a33b3a6a145b8be4491cbc56816b963ee983887a4271a57293636fa9fa6a471f770b58c7761f6eb6c153bff0b
7
+ data.tar.gz: 9b2cab85d6c3498a9e83f31f12616f300273c8e260d3efb1e7eca504d699072cf8cccc7935245a82034264f8c0bd26b1a727c18e749c20c36927b615114b0d66
@@ -8,9 +8,9 @@ module Polymer
8
8
  end
9
9
 
10
10
  def copy_component_template
11
- template "component.html.erb", "app/assets/components/#{component_name}/#{component_name}.html"
12
- template "component.js.erb", "app/assets/components/#{component_name}/#{component_name}.js"
13
- template "component.css.erb", "app/assets/components/#{component_name}/#{component_name}.css"
11
+ template "component.html.erb", "app/assets/components/#{component_name}/#{component_base_name}.html"
12
+ template "component.js.erb", "app/assets/components/#{component_name}/#{component_base_name}.js"
13
+ template "component.css.erb", "app/assets/components/#{component_name}/#{component_base_name}.css"
14
14
  end
15
15
 
16
16
  private
@@ -18,6 +18,10 @@ module Polymer
18
18
  def component_name
19
19
  name.gsub('_', '-').downcase
20
20
  end
21
+
22
+ def component_base_name
23
+ component_name.split('/')[-1]
24
+ end
21
25
  end
22
26
  end
23
27
  end
@@ -1,9 +1,9 @@
1
- <dom-module id="<%= component_name %>">
2
- <link rel="stylesheet" href="<%= component_name %>.css" />
1
+ <dom-module id="<%= component_base_name %>">
2
+ <link rel="stylesheet" href="<%= component_base_name %>.css" />
3
3
  <template>
4
4
 
5
5
  <h2><%= file_name.capitalize.gsub('_', ' ') %></h2>
6
6
  </template>
7
7
 
8
- <script src="<%= component_name %>.js"></script>
8
+ <script src="<%= component_base_name %>.js"></script>
9
9
  </dom-module>
@@ -1,3 +1,3 @@
1
1
  Polymer({
2
- is: "<%= component_name %>"
2
+ is: "<%= component_base_name %>"
3
3
  });
@@ -1,5 +1,5 @@
1
1
  module Polymer
2
2
  module Rails
3
- VERSION = "1.2.4.1"
3
+ VERSION = "1.3.0"
4
4
  end
5
5
  end
@@ -28,7 +28,11 @@ module Polymer
28
28
 
29
29
  def stringify doc
30
30
  xml_nodes(doc).reduce(to_html(doc)) do |output, node|
31
- output.gsub(node.to_html, node.to_xml(XML_OPTIONS)).encode(ENCODING)
31
+ pattern = node.to_html
32
+ replacement = node.to_xml(XML_OPTIONS)
33
+ replacement.gsub!( /src="%5B%5B(.+?)%5D%5D"/i, 'src="[[\1]]"' )
34
+ replacement.gsub!( /src="%7B%7B(.+?)%7D%7D"/i, 'src="{{\1}}"' )
35
+ output.gsub(pattern, replacement).encode(ENCODING)
32
36
  end
33
37
  end
34
38
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polymer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Chaplinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-14 00:00:00.000000000 Z
11
+ date: 2017-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -131,28 +131,11 @@ extra_rdoc_files: []
131
131
  files:
132
132
  - README.md
133
133
  - Rakefile
134
- - app/assets/javascripts/polymer/LICENSE.txt
135
- - app/assets/javascripts/polymer/bower.json
136
- - app/assets/javascripts/polymer/build.log
137
134
  - app/assets/javascripts/polymer/polymer-micro.html
138
135
  - app/assets/javascripts/polymer/polymer-mini.html
139
136
  - app/assets/javascripts/polymer/polymer.html
140
- - app/assets/javascripts/webcomponentsjs/CustomElements.js
141
- - app/assets/javascripts/webcomponentsjs/CustomElements.min.js
142
- - app/assets/javascripts/webcomponentsjs/HTMLImports.js
143
- - app/assets/javascripts/webcomponentsjs/HTMLImports.min.js
144
- - app/assets/javascripts/webcomponentsjs/MutationObserver.js
145
- - app/assets/javascripts/webcomponentsjs/MutationObserver.min.js
146
- - app/assets/javascripts/webcomponentsjs/README.md
147
- - app/assets/javascripts/webcomponentsjs/ShadowDOM.js
148
- - app/assets/javascripts/webcomponentsjs/ShadowDOM.min.js
149
- - app/assets/javascripts/webcomponentsjs/bower.json
150
- - app/assets/javascripts/webcomponentsjs/build.log
151
- - app/assets/javascripts/webcomponentsjs/package.json
152
137
  - app/assets/javascripts/webcomponentsjs/webcomponents-lite.js
153
- - app/assets/javascripts/webcomponentsjs/webcomponents-lite.min.js
154
138
  - app/assets/javascripts/webcomponentsjs/webcomponents.js
155
- - app/assets/javascripts/webcomponentsjs/webcomponents.min.js
156
139
  - lib/generators/polymer/component/component_generator.rb
157
140
  - lib/generators/polymer/component/templates/component.css.erb
158
141
  - lib/generators/polymer/component/templates/component.html.erb
@@ -192,7 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
175
  version: '0'
193
176
  requirements: []
194
177
  rubyforge_project:
195
- rubygems_version: 2.4.5
178
+ rubygems_version: 2.6.12
196
179
  signing_key:
197
180
  specification_version: 4
198
181
  summary: Use of web components with polymer with rails
@@ -1,27 +0,0 @@
1
- // Copyright (c) 2014 The Polymer Authors. All rights reserved.
2
- //
3
- // Redistribution and use in source and binary forms, with or without
4
- // modification, are permitted provided that the following conditions are
5
- // met:
6
- //
7
- // * Redistributions of source code must retain the above copyright
8
- // notice, this list of conditions and the following disclaimer.
9
- // * Redistributions in binary form must reproduce the above
10
- // copyright notice, this list of conditions and the following disclaimer
11
- // in the documentation and/or other materials provided with the
12
- // distribution.
13
- // * Neither the name of Google Inc. nor the names of its
14
- // contributors may be used to endorse or promote products derived from
15
- // this software without specific prior written permission.
16
- //
17
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -1,29 +0,0 @@
1
- {
2
- "name": "polymer",
3
- "version": "1.2.4",
4
- "main": [
5
- "polymer.html",
6
- "polymer-mini.html",
7
- "polymer-micro.html"
8
- ],
9
- "license": "http://polymer.github.io/LICENSE.txt",
10
- "ignore": [
11
- "/.*",
12
- "/test/",
13
- "gen-changelog.sh"
14
- ],
15
- "authors": [
16
- "The Polymer Authors (http://polymer.github.io/AUTHORS.txt)"
17
- ],
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/Polymer/polymer.git"
21
- },
22
- "dependencies": {
23
- "webcomponentsjs": "^0.7.20"
24
- },
25
- "devDependencies": {
26
- "web-component-tester": "*"
27
- },
28
- "private": true
29
- }
@@ -1,466 +0,0 @@
1
- BUILD LOG
2
- ---------
3
- Build Time: 2016-01-27T14:09:18-0800
4
-
5
- NODEJS INFORMATION
6
- ==================
7
- nodejs: v5.5.0
8
- abbrev: 1.0.7
9
- accepts: 1.2.13
10
- accessibility-developer-tools: 2.10.0
11
- adm-zip: 0.4.7
12
- after: 0.8.1
13
- align-text: 0.1.3
14
- amdefine: 1.0.0
15
- ansi-cyan: 0.1.1
16
- ansi-red: 0.1.1
17
- ansi-regex: 2.0.0
18
- ansi-styles: 2.1.0
19
- ansi-wrap: 0.1.0
20
- archiver: 0.14.4
21
- archy: 1.0.0
22
- arr-diff: 1.1.0
23
- arr-flatten: 1.0.1
24
- arr-union: 2.1.0
25
- array-flatten: 1.1.1
26
- array-differ: 1.0.0
27
- array-slice: 0.2.3
28
- array-union: 1.0.1
29
- array-uniq: 1.0.2
30
- arraybuffer.slice: 0.0.6
31
- asap: 2.0.3
32
- assert-plus: 0.1.5
33
- asn1: 0.1.11
34
- async: 1.5.2
35
- assertion-error: 1.0.1
36
- aws-sign2: 0.5.0
37
- backoff: 2.4.1
38
- backo2: 1.0.2
39
- balanced-match: 0.3.0
40
- base64-arraybuffer: 0.1.2
41
- base64-js: 0.0.8
42
- base64id: 0.1.0
43
- beeper: 1.1.0
44
- benchmark: 1.0.0
45
- better-assert: 1.0.2
46
- binary: 0.3.0
47
- binaryextensions: 1.0.0
48
- bl: 0.9.5
49
- blob: 0.0.4
50
- bluebird: 2.10.2
51
- boom: 0.4.2
52
- brace-expansion: 1.1.2
53
- browserstack: 1.3.0
54
- buffer-crc32: 0.2.5
55
- buffers: 0.1.1
56
- builtin-modules: 1.1.1
57
- bunyan: 1.5.1
58
- callsite: 1.0.0
59
- camelcase: 2.1.0
60
- camelcase-keys: 2.0.0
61
- capture-stack-trace: 1.0.0
62
- caseless: 0.8.0
63
- center-align: 0.1.2
64
- chai: 3.4.1
65
- chainsaw: 0.1.0
66
- chalk: 1.1.1
67
- cleankill: 1.0.2
68
- cliui: 2.1.0
69
- clone: 1.0.2
70
- clone-stats: 0.0.1
71
- combined-stream: 0.0.7
72
- commander: 2.3.0
73
- component-bind: 1.0.0
74
- component-emitter: 1.1.2
75
- component-inherit: 0.0.3
76
- compress-commons: 0.2.9
77
- configstore: 1.4.0
78
- concat-map: 0.0.1
79
- content-disposition: 0.5.1
80
- content-type: 1.0.1
81
- cookie: 0.1.5
82
- cookie-signature: 1.0.6
83
- crc: 3.2.1
84
- core-util-is: 1.0.2
85
- crc32-stream: 0.3.4
86
- create-error-class: 2.0.1
87
- cryptiles: 0.2.2
88
- csv: 0.4.6
89
- csv-generate: 0.0.6
90
- csv-stringify: 0.0.8
91
- dashdash: 1.12.2
92
- csv-parse: 1.0.1
93
- ctype: 0.5.3
94
- debug: 2.2.0
95
- dateformat: 1.0.12
96
- debuglog: 1.0.1
97
- decamelize: 1.1.2
98
- deep-eql: 0.1.3
99
- deep-extend: 0.4.1
100
- deep-is: 0.1.3
101
- defaults: 1.0.3
102
- delayed-stream: 0.0.5
103
- del: 1.2.1
104
- depd: 1.1.0
105
- deprecated: 0.0.1
106
- destroy: 1.0.4
107
- diff: 1.4.0
108
- dezalgo: 1.0.3
109
- dom5: 1.3.1
110
- dtrace-provider: 0.6.0
111
- doctrine: 0.7.2
112
- duplexer: 0.1.1
113
- duplexer2: 0.0.2
114
- each-async: 1.1.1
115
- ecc-jsbn: 0.1.1
116
- ee-first: 1.1.1
117
- end-of-stream: 0.1.5
118
- engine.io: 1.6.7
119
- engine.io-client: 1.6.7
120
- engine.io-parser: 1.2.4
121
- error-ex: 1.3.0
122
- es6-promise: 2.3.0
123
- escape-html: 1.0.3
124
- escape-regexp-component: 1.0.2
125
- escape-string-regexp: 1.0.4
126
- escodegen: 1.8.0
127
- esutils: 1.1.6
128
- espree: 2.2.5
129
- estraverse: 3.1.0
130
- etag: 1.7.0
131
- express: 4.13.4
132
- extend-shallow: 1.1.4
133
- extend: 2.0.1
134
- extsprintf: 1.2.0
135
- fancy-log: 1.1.0
136
- fast-levenshtein: 1.1.3
137
- find-index: 0.1.1
138
- finalhandler: 0.4.1
139
- find-up: 1.1.0
140
- findup-sync: 0.3.0
141
- first-chunk-stream: 1.0.0
142
- flagged-respawn: 0.3.1
143
- forever-agent: 0.5.2
144
- form-data: 0.2.0
145
- formidable: 1.0.17
146
- formatio: 1.1.1
147
- forwarded: 0.1.0
148
- freeport: 1.0.5
149
- fresh: 0.3.0
150
- fstream: 0.1.31
151
- gaze: 0.5.2
152
- generate-function: 2.0.0
153
- generate-object-property: 1.2.0
154
- get-stdin: 4.0.1
155
- github-url-from-username-repo: 1.0.2
156
- github-url-from-git: 1.4.0
157
- glob: 5.0.15
158
- glob-stream: 3.1.18
159
- glob-watcher: 0.0.6
160
- glob2base: 0.0.12
161
- globby: 2.1.0
162
- glogg: 1.0.0
163
- globule: 0.1.0
164
- got: 5.4.1
165
- graceful-readlink: 1.0.1
166
- graceful-fs: 4.1.2
167
- growl: 1.8.1
168
- gulp-audit: 1.0.0
169
- gulp: 3.9.0
170
- gulp-rename: 1.2.2
171
- gulp-replace: 0.5.4
172
- gulp-util: 3.0.7
173
- gulp-vulcanize: 6.1.0
174
- gulplog: 1.0.0
175
- har-validator: 2.0.6
176
- has-ansi: 2.0.0
177
- has-binary: 0.1.7
178
- has-color: 0.1.7
179
- has-cors: 1.1.0
180
- has-gulplog: 0.1.0
181
- hoek: 0.9.1
182
- hawk: 1.1.1
183
- hosted-git-info: 2.1.4
184
- http-errors: 1.3.1
185
- hydrolysis: 1.21.4
186
- http-signature: 0.11.0
187
- imurmurhash: 0.1.4
188
- indent-string: 2.1.0
189
- indexof: 0.0.1
190
- inflight: 1.0.4
191
- inherits: 2.0.1
192
- ini: 1.3.4
193
- interpret: 0.6.6
194
- is-absolute: 0.1.7
195
- ipaddr.js: 1.0.5
196
- is-arrayish: 0.2.1
197
- is-buffer: 1.1.1
198
- is-builtin-module: 1.0.0
199
- is-finite: 1.0.1
200
- is-my-json-valid: 2.12.4
201
- is-npm: 1.0.0
202
- is-path-cwd: 1.0.0
203
- is-path-in-cwd: 1.0.0
204
- is-path-inside: 1.0.0
205
- is-plain-obj: 1.1.0
206
- is-property: 1.0.2
207
- is-redirect: 1.0.0
208
- is-relative: 0.1.3
209
- is-retry-allowed: 1.0.0
210
- is-stream: 1.0.1
211
- is-typedarray: 1.0.0
212
- is-utf8: 0.2.1
213
- isexe: 1.1.1
214
- isarray: 0.0.1
215
- isstream: 0.1.2
216
- istextorbinary: 1.0.2
217
- jju: 1.2.1
218
- jade: 0.26.3
219
- jodid25519: 1.0.2
220
- jsbn: 0.1.0
221
- json-parse-helpfulerror: 1.0.3
222
- json-schema: 0.2.2
223
- json-stringify-safe: 5.0.1
224
- json3: 3.2.6
225
- jsonpointer: 2.0.0
226
- jsprim: 1.2.2
227
- kind-of: 1.1.0
228
- latest-version: 2.0.0
229
- keep-alive-agent: 0.0.1
230
- launchpad: 0.5.0
231
- lazypipe: 0.2.4
232
- lazy-cache: 0.2.7
233
- lazystream: 0.1.0
234
- levn: 0.3.0
235
- liftoff: 2.2.0
236
- lodash: 1.0.2
237
- load-json-file: 1.1.0
238
- lodash._basecopy: 3.0.1
239
- lodash._basetostring: 3.0.1
240
- lodash._basevalues: 3.0.0
241
- lodash._isiterateecall: 3.0.9
242
- lodash._getnative: 3.9.1
243
- lodash._reescape: 3.0.0
244
- lodash._reevaluate: 3.0.0
245
- lodash._reinterpolate: 3.0.0
246
- lodash.escape: 3.1.1
247
- lodash.isarguments: 3.0.5
248
- lodash.isarray: 3.0.4
249
- lodash.keys: 3.1.2
250
- lodash.template: 3.6.2
251
- lodash.restparam: 3.6.1
252
- lodash.templatesettings: 3.1.1
253
- lolex: 1.3.2
254
- longest: 1.0.1
255
- loud-rejection: 1.2.0
256
- lowercase-keys: 1.0.0
257
- lru-cache: 2.7.3
258
- map-obj: 1.0.1
259
- match-stream: 0.0.2
260
- media-typer: 0.3.0
261
- meow: 3.7.0
262
- merge-descriptors: 1.0.1
263
- methods: 1.1.2
264
- mime-db: 1.21.0
265
- mime: 1.3.4
266
- mime-types: 2.1.9
267
- minimatch: 3.0.0
268
- minimist: 1.2.0
269
- mkdirp: 0.5.1
270
- mocha: 2.4.1
271
- ms: 0.7.1
272
- multipipe: 0.1.2
273
- mv: 2.1.1
274
- nan: 2.2.0
275
- negotiator: 0.5.3
276
- ncp: 2.0.0
277
- node-int64: 0.3.3
278
- node-status-codes: 1.0.0
279
- node-uuid: 1.4.7
280
- nopt: 3.0.6
281
- nomnom: 1.8.1
282
- number-is-nan: 1.0.0
283
- normalize-package-data: 2.3.5
284
- oauth-sign: 0.5.0
285
- object-assign: 3.0.0
286
- object-component: 0.0.3
287
- on-finished: 2.3.0
288
- once: 1.3.3
289
- optionator: 0.8.1
290
- onetime: 1.1.0
291
- options: 0.0.6
292
- orchestrator: 0.3.7
293
- ordered-read-streams: 0.1.0
294
- os-tmpdir: 1.0.1
295
- osenv: 0.1.3
296
- os-homedir: 1.0.1
297
- over: 0.0.5
298
- package-json: 2.3.0
299
- parse-json: 2.2.0
300
- parse5: 1.5.1
301
- parsejson: 0.0.1
302
- parseuri: 0.0.4
303
- parseqs: 0.0.2
304
- parseurl: 1.3.1
305
- path-exists: 2.1.0
306
- path-is-absolute: 1.0.0
307
- path-is-inside: 1.0.1
308
- path-posix: 1.0.0
309
- path-to-regexp: 0.1.7
310
- path-type: 1.1.0
311
- pify: 2.3.0
312
- pinkie: 2.0.1
313
- pinkie-promise: 2.0.0
314
- plist: 1.2.0
315
- plugin-error: 0.1.2
316
- polyclean: 1.3.1
317
- precond: 0.2.3
318
- prelude-ls: 1.1.2
319
- prepend-http: 1.0.3
320
- pretty-hrtime: 1.0.1
321
- process-nextick-args: 1.0.6
322
- progress: 1.1.8
323
- pullstream: 0.4.1
324
- proxy-addr: 1.0.10
325
- q: 1.4.1
326
- qs: 4.0.0
327
- range-parser: 1.0.3
328
- read-all-stream: 3.0.1
329
- rc: 1.1.6
330
- read-installed: 3.1.5
331
- read-package-json: 1.3.3
332
- read-pkg: 1.1.0
333
- read-pkg-up: 1.0.1
334
- readdir-scoped-modules: 1.0.2
335
- readable-stream: 1.1.13
336
- redent: 1.0.0
337
- rechoir: 0.6.2
338
- registry-url: 3.0.3
339
- repeat-string: 1.5.2
340
- replace-ext: 0.0.1
341
- repeating: 2.0.0
342
- replacestream: 4.0.0
343
- request: 2.51.0
344
- resolve: 1.1.7
345
- right-align: 0.1.3
346
- restify: 4.0.3
347
- rimraf: 2.5.1
348
- run-sequence: 1.1.5
349
- safe-json-stringify: 1.0.3
350
- samsam: 1.1.2
351
- sauce-connect-launcher: 0.14.0
352
- selenium-standalone: 4.8.0
353
- semver-diff: 2.1.0
354
- semver: 4.3.6
355
- send: 0.11.1
356
- sequencify: 0.0.7
357
- serve-static: 1.10.2
358
- serve-waterfall: 1.1.1
359
- server-destroy: 1.0.1
360
- set-immediate-shim: 1.0.1
361
- setimmediate: 1.0.4
362
- sigmund: 1.0.1
363
- signal-exit: 2.1.2
364
- sinon: 1.17.2
365
- slice-stream: 1.0.0
366
- sinon-chai: 2.8.0
367
- slide: 1.1.6
368
- sntp: 0.2.4
369
- socket.io: 1.4.4
370
- socket.io-adapter: 0.4.0
371
- socket.io-client: 1.4.4
372
- socket.io-parser: 2.2.6
373
- source-map: 0.2.0
374
- spdx-correct: 1.0.2
375
- sparkles: 1.0.0
376
- spdx-exceptions: 1.0.4
377
- spdx-expression-parse: 1.0.2
378
- spdx-license-ids: 1.2.0
379
- spdy: 1.32.5
380
- statuses: 1.2.1
381
- sshpk: 1.7.3
382
- stacky: 1.3.1
383
- stream-consume: 0.1.0
384
- stream-combiner: 0.2.2
385
- stream-transform: 0.1.1
386
- string-length: 1.0.1
387
- string_decoder: 0.10.31
388
- stringstream: 0.0.5
389
- strip-ansi: 3.0.0
390
- strip-bom: 2.0.0
391
- strip-indent: 1.0.1
392
- strip-json-comments: 1.0.4
393
- supports-color: 2.0.0
394
- tar-stream: 1.1.5
395
- temp: 0.8.3
396
- test-fixture: 1.1.0
397
- textextensions: 1.0.1
398
- through: 2.3.8
399
- through2: 2.0.0
400
- tildify: 1.1.2
401
- timed-out: 2.0.0
402
- to-array: 0.1.3
403
- tough-cookie: 2.2.1
404
- trim-newlines: 1.0.0
405
- traverse: 0.3.9
406
- tunnel-agent: 0.4.2
407
- tweetnacl: 0.13.3
408
- type-check: 0.3.2
409
- type-detect: 1.0.0
410
- type-is: 1.6.10
411
- uglify-js: 2.6.1
412
- uglify-to-browserify: 1.0.2
413
- ultron: 1.0.2
414
- underscore: 1.6.0
415
- underscore.string: 3.0.3
416
- unpipe: 1.0.0
417
- unique-stream: 1.0.0
418
- unzip: 0.1.11
419
- unzip-response: 1.0.0
420
- update-notifier: 0.6.0
421
- urijs: 1.16.1
422
- url-parse-lax: 1.0.0
423
- user-home: 1.1.1
424
- utf8: 2.1.0
425
- util: 0.10.3
426
- util-deprecate: 1.0.2
427
- util-extend: 1.0.3
428
- utils-merge: 1.0.0
429
- uuid: 2.0.1
430
- v8flags: 2.0.11
431
- validate-npm-package-license: 3.0.1
432
- vargs: 0.1.0
433
- vasync: 1.6.3
434
- vary: 1.0.1
435
- vinyl: 0.5.3
436
- verror: 1.6.0
437
- vinyl-fs: 0.3.14
438
- vulcanize: 1.14.5
439
- wct-local: 2.0.1
440
- wct-sauce: 1.8.3
441
- wd: 0.3.12
442
- web-component-tester: 4.1.0
443
- which: 1.2.2
444
- window-size: 0.1.0
445
- wordwrap: 1.0.0
446
- wrappy: 1.0.1
447
- write-file-atomic: 1.1.4
448
- ws: 1.0.1
449
- xdg-basedir: 2.0.0
450
- xmlbuilder: 4.0.0
451
- xmldom: 0.1.21
452
- xmlhttprequest-ssl: 1.5.1
453
- xtend: 4.0.1
454
- yargs: 3.10.0
455
- yeast: 0.1.2
456
- zip-stream: 0.5.2
457
-
458
- REPO REVISIONS
459
- ==============
460
- polymer: 6c7b2228c7eb5d2df4bd6260828a1f20f7c0fbb0
461
-
462
- BUILD HASHES
463
- ============
464
- polymer-mini.html: c25c2e49244d3947604d0e91d8d0d016df71f56d
465
- polymer-micro.html: e67fbe4d81d5661b4ed16897c3348f2d77325d6a
466
- polymer.html: bc0e501f8db1c65e2a1c7f665805f5f191fdfc27