zafiro 0.1.0 → 0.1.2
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.
Potentially problematic release.
This version of zafiro might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gitignore +8 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/generators/zafiro/install/install_generator.rb +12 -0
- data/lib/generators/zafiro/install/templates/zafiro.css +4 -0
- data/lib/zafiro/version.rb +1 -1
- data/lib/zafiro.rb +1 -0
- metadata +6 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc481cdfa26ed893094072b0a500348cb1e2ea9a1f845cbff3042f5c4e3b65f2
|
|
4
|
+
data.tar.gz: 2bbb20643f8206c07fefecbeef309f50c4d2c61cfe4cf17683aaf01de3ce6bb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53f0ccc8c4e3294e4b602048b9b907cf377d54b3b8be3b34d98ff82df7bb872ba692c44470d2950513f1accf35e52ec93b0bca60f61389edbec091cfe2e260f5
|
|
7
|
+
data.tar.gz: 9183b4f93fdff370957906a99ea9944d4d23e8593b0c6122a1e4ee48fb4026966ce4a9057b3ce866cec33ca2d401c60531dea111d127b02cd0dccec355476703
|
data/.gitignore
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "bundler/setup"
|
|
5
|
+
require "zafiro"
|
|
6
|
+
|
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
+
|
|
10
|
+
require "irb"
|
|
11
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# lib/generators/zafiro/install/install_generator.rb
|
|
2
|
+
module Zafiro
|
|
3
|
+
module Generators
|
|
4
|
+
class InstallGenerator < Rails::Generators::Base
|
|
5
|
+
source_root File.expand_path('templates', __dir__)
|
|
6
|
+
|
|
7
|
+
def create_stylesheet_file
|
|
8
|
+
copy_file 'zafiro.css', 'app/assets/stylesheets/zafiro.css'
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
data/lib/zafiro/version.rb
CHANGED
data/lib/zafiro.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zafiro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nicobertin
|
|
@@ -18,12 +18,17 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- ".gitignore"
|
|
21
22
|
- ".standard.yml"
|
|
22
23
|
- CHANGELOG.md
|
|
23
24
|
- CODE_OF_CONDUCT.md
|
|
24
25
|
- LICENSE.txt
|
|
25
26
|
- README.md
|
|
26
27
|
- Rakefile
|
|
28
|
+
- bin/console
|
|
29
|
+
- bin/setup
|
|
30
|
+
- lib/generators/zafiro/install/install_generator.rb
|
|
31
|
+
- lib/generators/zafiro/install/templates/zafiro.css
|
|
27
32
|
- lib/zafiro.rb
|
|
28
33
|
- lib/zafiro/version.rb
|
|
29
34
|
- sig/zafiro.rbs
|