profilepic 0.0.1
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/CHANGELOG.md +3 -0
- data/Manifest.txt +6 -0
- data/README.md +29 -0
- data/Rakefile +32 -0
- data/lib/profilepic/version.rb +22 -0
- data/lib/profilepic.rb +18 -0
- metadata +101 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 16107e3018976b2e83a60246d8997efb87bd36870a570d384df7b12967d1fc89
|
|
4
|
+
data.tar.gz: b0383b166aa51bed2bc09530d26b474e9927d284b466279cfc6d9d0307dfb031
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c018701f85b09f2f8033cc1fb21ee3ddb81ec83ccd7c7c863d0b2a37ac000893c293a947341380f29ee32d5732672c38ac379eaa46fa2aa33add76596ea4775b
|
|
7
|
+
data.tar.gz: 37311c4b6de44151128048d398f932dc57bc4b13a5fdc288753b027d8bc32b9a666be69fbfcc9e63dffe36854cd659d2d03b787bafd741de03ba748ed6454832
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Profile Pic(ture) As A Service
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* home :: [github.com/profilepic/profilepic](https://github.com/profilepic/profilepic)
|
|
5
|
+
* bugs :: [github.com/profilepic/profilepic/issues](https://github.com/profilepic/profilepic/issues)
|
|
6
|
+
* gem :: [rubygems.org/gems/profilepic](https://rubygems.org/gems/profilepic)
|
|
7
|
+
* rdoc :: [rubydoc.info/gems/profilepic](http://rubydoc.info/gems/profilepic)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
...
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
The scripts are dedicated to the public domain.
|
|
22
|
+
Use it as you please with no restrictions whatsoever.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Questions? Comments?
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Post them on the [D.I.Y. Punk (Pixel) Art reddit](https://old.reddit.com/r/DIYPunkArt). Thanks.
|
|
29
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/profilepic/version.rb'
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
Hoe.spec 'profilepic' do
|
|
6
|
+
|
|
7
|
+
self.version = Profilepic::VERSION
|
|
8
|
+
|
|
9
|
+
self.summary = "profilepic - profile pic(tures) as a service"
|
|
10
|
+
self.description = summary
|
|
11
|
+
|
|
12
|
+
self.urls = { home: 'https://github.com/profilepic/profilepic' }
|
|
13
|
+
|
|
14
|
+
self.author = 'Gerald Bauer'
|
|
15
|
+
self.email = 'wwwmake@googlegroups.com'
|
|
16
|
+
|
|
17
|
+
# switch extension to .markdown for gihub formatting
|
|
18
|
+
self.readme_file = 'README.md'
|
|
19
|
+
self.history_file = 'CHANGELOG.md'
|
|
20
|
+
|
|
21
|
+
self.extra_deps = [
|
|
22
|
+
['originals'],
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
self.licenses = ['Public Domain']
|
|
26
|
+
|
|
27
|
+
self.spec_extras = {
|
|
28
|
+
required_ruby_version: '>= 2.3'
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
end
|
|
32
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
module Profilepic
|
|
4
|
+
MAJOR = 0
|
|
5
|
+
MINOR = 0
|
|
6
|
+
PATCH = 1
|
|
7
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
8
|
+
|
|
9
|
+
def self.version
|
|
10
|
+
VERSION
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def self.banner
|
|
14
|
+
"profilepic/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}] in (#{root})"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def self.root
|
|
18
|
+
File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
end # module Profilepic
|
|
22
|
+
|
data/lib/profilepic.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## 3rd party libs
|
|
2
|
+
require 'originals'
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## our own code
|
|
6
|
+
require 'profilepic/version' # note: let version always go first
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
####
|
|
12
|
+
# convenience aliases / shortcuts / alternate spellings
|
|
13
|
+
ProfilePic = Profilepic
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
puts Profilepic.banner # say hello
|
metadata
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: profilepic
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Gerald Bauer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-08-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: originals
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rdoc
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '4.0'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '7'
|
|
37
|
+
type: :development
|
|
38
|
+
prerelease: false
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '4.0'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '7'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: hoe
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.23'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '3.23'
|
|
61
|
+
description: profilepic - profile pic(tures) as a service
|
|
62
|
+
email: wwwmake@googlegroups.com
|
|
63
|
+
executables: []
|
|
64
|
+
extensions: []
|
|
65
|
+
extra_rdoc_files:
|
|
66
|
+
- CHANGELOG.md
|
|
67
|
+
- Manifest.txt
|
|
68
|
+
- README.md
|
|
69
|
+
files:
|
|
70
|
+
- CHANGELOG.md
|
|
71
|
+
- Manifest.txt
|
|
72
|
+
- README.md
|
|
73
|
+
- Rakefile
|
|
74
|
+
- lib/profilepic.rb
|
|
75
|
+
- lib/profilepic/version.rb
|
|
76
|
+
homepage: https://github.com/profilepic/profilepic
|
|
77
|
+
licenses:
|
|
78
|
+
- Public Domain
|
|
79
|
+
metadata: {}
|
|
80
|
+
post_install_message:
|
|
81
|
+
rdoc_options:
|
|
82
|
+
- "--main"
|
|
83
|
+
- README.md
|
|
84
|
+
require_paths:
|
|
85
|
+
- lib
|
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - ">="
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '2.3'
|
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
requirements: []
|
|
97
|
+
rubygems_version: 3.3.7
|
|
98
|
+
signing_key:
|
|
99
|
+
specification_version: 4
|
|
100
|
+
summary: profilepic - profile pic(tures) as a service
|
|
101
|
+
test_files: []
|