web_components_rails 1.2.2 → 2.0.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: e6af103fa4143fd99ba1eaee24c139aa2b8ec036
4
- data.tar.gz: a20d26caf95e14e6c3576ed2765190db45775ed4
3
+ metadata.gz: 8102053ec0869cf2a7275393e5c053857c819948
4
+ data.tar.gz: e05aab90298de3d274cb188f0a0c3bea330b7542
5
5
  SHA512:
6
- metadata.gz: 09a28812e9aa98e0556dd8e34439170096db97c8b05d39a639f4c23b524afc27c80ec21079c96318253de66521b06f5dfbb53268a62f199fce1d28f517a46212
7
- data.tar.gz: ac7856cfd1f1a7d66837283183670dea6dd4231337b8b867b1b009b624321fa5114a82df456ca22b98583e7ad40567a6ed595474d2fcc2fff27a5265e1f2392d
6
+ metadata.gz: 776fc43f0c492a451a9f0226443c526d7ce9d70bcd3a148a590658af95e71ab70a4454f3b4a8b6e5453d77a8b6d2a912dfc3d40edc08ff2ee84585b47f3c786b
7
+ data.tar.gz: 7bf2804cede559b349079c70ac6e7f0e09e7490d41455a96957a6b87bff5417215f899a6897a1a8845b64bb0ab2e28ca008c2ced3fb42af91012247499487e46
@@ -21,7 +21,6 @@ class WebComponentsRails::Railtie < Rails::Railtie
21
21
  env.register_mime_type 'text/html', extensions: ['.html', '.haml']
22
22
  env.register_preprocessor 'text/html', Sprockets::DirectiveProcessor
23
23
  env.register_preprocessor 'text/html', WebComponentsRails::HTMLImportProcessor
24
- env.register_engine '.haml', WebComponentsRails::HamlTemplate
25
24
  env.register_bundle_processor 'text/html', ::Sprockets::Bundle
26
25
  end
27
26
  end
@@ -1,3 +1,3 @@
1
1
  module WebComponentsRails
2
- VERSION = '1.2.2'
2
+ VERSION = '2.0.0'
3
3
  end
@@ -5,7 +5,6 @@ module WebComponentsRails
5
5
  end
6
6
 
7
7
  require 'web_components_rails/asset_tag_helper'
8
- require 'web_components_rails/haml_template'
9
8
  require 'web_components_rails/html_import_processor'
10
9
  require 'web_components_rails/railtie'
11
10
  require 'web_components_rails/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web_components_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Botelho
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-11 00:00:00.000000000 Z
11
+ date: 2017-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogumbo
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: 2.0.0
55
- - !ruby/object:Gem::Dependency
56
- name: haml
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: rspec
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -96,7 +82,6 @@ files:
96
82
  - README.md
97
83
  - lib/web_components_rails.rb
98
84
  - lib/web_components_rails/asset_tag_helper.rb
99
- - lib/web_components_rails/haml_template.rb
100
85
  - lib/web_components_rails/html_import_processor.rb
101
86
  - lib/web_components_rails/railtie.rb
102
87
  - lib/web_components_rails/version.rb
@@ -119,9 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
104
  version: '0'
120
105
  requirements: []
121
106
  rubyforge_project:
122
- rubygems_version: 2.5.1
107
+ rubygems_version: 2.6.8
123
108
  signing_key:
124
109
  specification_version: 4
125
110
  summary: Web components utils for rails
126
111
  test_files: []
127
- has_rdoc:
@@ -1,8 +0,0 @@
1
- require 'haml'
2
-
3
- class WebComponentsRails::HamlTemplate < Tilt::HamlTemplate
4
- def prepare
5
- @options = @options.merge(format: :html5)
6
- super
7
- end
8
- end