vitat-css 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: 1673ec0bb844002b38284a5d7ab9a1a6f35e6591f03dbb456f64b8fbefcb3b8c
4
- data.tar.gz: c8bff20a9b01979c4bba3f66b222867a5cf637a0d12d413a0eeb023f9c601783
3
+ metadata.gz: 6a5cb0bb6a399017c3e2c9aa59301a72157bfc7cdaa98b141e80a8b00362a17f
4
+ data.tar.gz: 2df7caeda4ad133c16fa715efafc24f4be7dec3cdb6dd8a61586fe2be93f4a30
5
5
  SHA512:
6
- metadata.gz: 9b67ca32071c46ee59ff4bb10a384489db463b65efbadbdf281e39ff8038f948eb0c363f28bd0459863b08ec467efeb933c1af05ad6b9c7a8781f6b440ceaf4a
7
- data.tar.gz: 7f56d5e843e49445b638c9ef998ea5c81a63caec9f8572a64d282ace8e0906076b2bc9e48c12a6a3af3b746519c0aad722bcfb78be54af49801477c5aaf9f78d
6
+ metadata.gz: fc277162a0e08b6a67928d79563f95f19d3a978926e4c7d14ecdfa2efdec2937422ff1785e6303a85cdcb837e34521b21096ce46a1006cb5a876b183c0a9df17
7
+ data.tar.gz: 835cf17caf7e950fe16f4063ae4af5b2020fe5306e02183ac921984fc178caf8116896b74e35023825c1990cb2dce2e30b7bffbf21cac20ac3d6f0249542636e
data/.DS_Store CHANGED
Binary file
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at amanda.rocha@vitat.com.br. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in vitat-css.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 AmandavrVitat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "vitat/css"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/css/.DS_Store ADDED
Binary file
@@ -0,0 +1,5 @@
1
+ module Vitat
2
+ module Css
3
+ VERSION = "0.1.3"
4
+ end
5
+ end
data/lib/vitat/css.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "vitat/css/version"
2
+
3
+ module Vitat
4
+ module Css
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
8
+ end
Binary file
Binary file
data/vitat-css.gemspec ADDED
@@ -0,0 +1,41 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "vitat/css/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "vitat-css"
8
+ spec.version = Vitat::Css::VERSION
9
+ spec.authors = ["Amandavr"]
10
+ spec.email = ["amanda.rocha@vitat.com.br"]
11
+
12
+ spec.summary = %q{Lib css para uso nos projetos em ruby da Vitat}
13
+ spec.description = %q{Lib css para uso nos projetos em ruby da Vitat}
14
+ spec.homepage = "https://github.com/sejavitat/front-bu"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "Atualizar texto"
21
+
22
+ # spec.metadata["homepage_uri"] = spec.homepage
23
+ # spec.metadata["source_code_uri"] = "https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview"
24
+ # spec.metadata["changelog_uri"] = "https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview/changelog.md"
25
+ # else
26
+ # raise "RubyGems 2.0 or newer is required to protect against " \
27
+ # "public gem pushes."
28
+ # end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.17"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vitat-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amandavr
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-04 00:00:00.000000000 Z
11
+ date: 2023-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -47,11 +47,8 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - ".DS_Store"
49
49
  - ".gitignore"
50
- - ".idea/.gitignore"
51
- - ".idea/modules.xml"
52
- - ".idea/vcs.xml"
53
- - ".idea/vitat-design-system.iml"
54
- - ".vscode/settings.json"
50
+ - CODE_OF_CONDUCT.md
51
+ - Gemfile
55
52
  - HTML/.DS_Store
56
53
  - HTML/Components/Arabescos.html
57
54
  - HTML/Components/Buttons.html
@@ -63,7 +60,11 @@ files:
63
60
  - HTML/Components/Pills.html
64
61
  - HTML/Components/Revisado.html
65
62
  - JS/prism.js
63
+ - LICENSE.txt
66
64
  - README.md
65
+ - Rakefile
66
+ - bin/console
67
+ - bin/setup
67
68
  - bootstrap/scss/_accordion.scss
68
69
  - bootstrap/scss/_alert.scss
69
70
  - bootstrap/scss/_badge.scss
@@ -149,6 +150,7 @@ files:
149
150
  - bootstrap/scss/mixins/_visually-hidden.scss
150
151
  - bootstrap/scss/utilities/_api.scss
151
152
  - bootstrap/scss/vendor/_rfs.scss
153
+ - css/.DS_Store
152
154
  - css/prism.css
153
155
  - css/style.css
154
156
  - gulpfile.js
@@ -164,6 +166,8 @@ files:
164
166
  - img/store_icon.png
165
167
  - index.html
166
168
  - install_nvm.sh
169
+ - lib/vitat/css.rb
170
+ - lib/vitat/css/version.rb
167
171
  - package-lock.json
168
172
  - package.json
169
173
  - scss/.DS_Store
@@ -191,7 +195,10 @@ files:
191
195
  - scss/guide/components/pills/pill__small.scss
192
196
  - scss/guide/components/revisado/revisado.scss
193
197
  - scss/guide/style.scss
194
- homepage: https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview
198
+ - vitat-css-0.1.1.gem
199
+ - vitat-css-0.1.2.gem
200
+ - vitat-css.gemspec
201
+ homepage: https://github.com/sejavitat/front-bu
195
202
  licenses:
196
203
  - MIT
197
204
  metadata: {}
data/.idea/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- # Default ignored files
2
- /shelf/
3
- /workspace.xml
4
- # Editor-based HTTP Client requests
5
- /httpRequests/
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/vitat-design-system.iml" filepath="$PROJECT_DIR$/.idea/vitat-design-system.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$">
5
- <excludeFolder url="file://$MODULE_DIR$/temp" />
6
- <excludeFolder url="file://$MODULE_DIR$/.tmp" />
7
- <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
- </content>
9
- <orderEntry type="inheritedJdk" />
10
- <orderEntry type="sourceFolder" forTests="false" />
11
- </component>
12
- </module>
@@ -1,3 +0,0 @@
1
- {
2
- "liveServer.settings.port": 5501
3
- }