material_design 0.6.1 → 0.7.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 +4 -4
- data/app/views/material_design/icons/_check_circle.html.erb +2 -2
- data/app/views/material_design/icons/_shift.html.erb +1 -0
- data/app/views/material_design/icons/_shift_filled.html.erb +1 -0
- data/lib/material_design/railtie.rb +3 -3
- data/lib/material_design/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 267d95cd22d5c516fdd24f30262e6a6c5a11b9804c82be744167f385f644d38a
|
4
|
+
data.tar.gz: 2b04c3523424970989ec9f41946f9e24e18f8cd66c984c72404dfc92af792e8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fcc6c55b74177b993d7d75b8a546edf70470b9cb79032048ca9511349623acf6187968e800ac9042e2cdbabf4a9cc1667a118129ec652610d4a4aabed50601a
|
7
|
+
data.tar.gz: 4282b24f18fb7a2e04487804449f833aa45f83b03f0c18ddddff7ea19adf2e5d9d5748f06fc06f25517ad5f0ea478f0bcea98b512432d1225ff2dcf7b5369602
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg
|
2
|
-
<path d="
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="<%= locals[:size] %>" viewBox="0 -960 960 960" width="<%= locals[:size] %>" fill="currentColor">
|
2
|
+
<path d="m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/>
|
3
3
|
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="<%= locals[:size] %>" height="<%= locals[:size] %>" viewBox="0 -960 960 960" width="24px" fill="currentColor"><path d="M320-120v-320H120l360-440 360 440H640v320H320Zm80-80h160v-320h111L480-754 289-520h111v320Zm80-320Z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="<%= locals[:size] %>" height="<%= locals[:size] %>" viewBox="0 -960 960 960" width="24px" fill="currentColor"><path d="M320-120v-320H120l360-440 360 440H640v320H320Z"/></svg>
|
@@ -1,10 +1,10 @@
|
|
1
1
|
require "rails/railtie"
|
2
2
|
|
3
3
|
module MyGem
|
4
|
-
class Railtie < Rails::Railtie
|
4
|
+
class Railtie < Rails::Railtie #add uma funcionalidade a um app rails a partir de uma gem
|
5
5
|
initializer "material_design.action_controller" do
|
6
|
-
ActiveSupport.on_load(:action_controller_base) do
|
7
|
-
helper MaterialDesign::ButtonHelper
|
6
|
+
ActiveSupport.on_load(:action_controller_base) do #quando a base controller for carregada
|
7
|
+
helper MaterialDesign::ButtonHelper #disponibiliza o helper em todos os arquivos
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Yutaka Nakanishi
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-10-03 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -1732,6 +1732,8 @@ files:
|
|
1732
1732
|
- app/views/material_design/icons/_share_location.html.erb
|
1733
1733
|
- app/views/material_design/icons/_shield.html.erb
|
1734
1734
|
- app/views/material_design/icons/_shield_moon.html.erb
|
1735
|
+
- app/views/material_design/icons/_shift.html.erb
|
1736
|
+
- app/views/material_design/icons/_shift_filled.html.erb
|
1735
1737
|
- app/views/material_design/icons/_shop.html.erb
|
1736
1738
|
- app/views/material_design/icons/_shop_2.html.erb
|
1737
1739
|
- app/views/material_design/icons/_shop_two.html.erb
|