smiles 0.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 +7 -0
- data/README.md +29 -0
- data/lib/smiles/version.rb +3 -0
- data/lib/smiles.rb +2 -0
- data/smiles.gemspec +15 -0
- metadata +46 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b85a7e9a9b5ea7adb802f5598c56f71864ba838b43a06752195c2a43d602a1ba
|
4
|
+
data.tar.gz: 840dfa8d8ce4f691b2f50646326c25eba39dcfdce8855603986759aef1a7e1b3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 53e0072cba58dc955b665221f5fabbce5dcc40a114ccefd51ce9eb8fa4b3cdb89e2442ae3bddbec8af15c4e4c0711c6a18ff15b8eebbdaa22fa19b2af953826a
|
7
|
+
data.tar.gz: f79b62a69070588adc1779da2e50a70a2cedca6f2692aec82f0bf79fe655fd66c11c9b92157e463a80421dcafd8b8f9ff79c398aba83b8d39f7a29f1063f4895
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Smiles
|
2
|
+
|
3
|
+
Smiles randomly generates user avatars from a set of colors and components.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'smiles'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install smiles
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
...
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/lib/smiles.rb
ADDED
data/smiles.gemspec
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require File.expand_path('../lib/smiles/version', __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |gem|
|
4
|
+
gem.name = 'smiles'
|
5
|
+
gem.version = Smiles::VERSION
|
6
|
+
gem.summary = %q{Generate random avatars.}
|
7
|
+
gem.description = %q{Smiles generates user avatars from a set of colors and components.}
|
8
|
+
gem.authors = ['Tom-Eric Gerritsen']
|
9
|
+
gem.email = ['ik@tom-eric.info']
|
10
|
+
gem.require_paths = ['lib']
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.homepage = 'https://github.com/eet-nu/smiles'
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: smiles
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tom-Eric Gerritsen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-05-22 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Smiles generates user avatars from a set of colors and components.
|
14
|
+
email:
|
15
|
+
- ik@tom-eric.info
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- README.md
|
21
|
+
- lib/smiles.rb
|
22
|
+
- lib/smiles/version.rb
|
23
|
+
- smiles.gemspec
|
24
|
+
homepage: https://github.com/eet-nu/smiles
|
25
|
+
licenses: []
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubygems_version: 3.4.6
|
43
|
+
signing_key:
|
44
|
+
specification_version: 4
|
45
|
+
summary: Generate random avatars.
|
46
|
+
test_files: []
|