social_nets_db 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0f34a54ddd600c3eca0d252f6268ccbf1e1218a759cd6e45480e9ec0a861739
4
- data.tar.gz: c710e00c6e326708c27e635328bf31716c74dbe21e7b29f4b66dd0d40ff03ee0
3
+ metadata.gz: eabb84b295197013fafa923bf04513f36f8acfff737fd97c24fd0f1b921c1f54
4
+ data.tar.gz: c98281d4146a3e6709f740208e5c567dcd3463ab12d34b938cac562cf61b5df8
5
5
  SHA512:
6
- metadata.gz: 528c882f2b6e55a309493fd44577b3e0fa4629035b9cf9cb582d84f7a1ac9ce58d023e9ba9f481cb958022bcb446d71ab206d78a9fbaf96f5ff5b90fc4a69c1f
7
- data.tar.gz: bcf8336c308bd6f60b3702380d2c059f360c9ade03fcea818c4e27855172c2ae1f0a45191258ae7084e426745a57d9e1590815379aadc79b57a339206b82a4f5
6
+ metadata.gz: a18eabf16fee2fcbd8d44660378e862844b38503191e61e156fdad135ab861b05dc204a1bcaae78c55884e0d86a0e9e9c1bd4bd035446e38fab365cab719dbd8
7
+ data.tar.gz: 59fa5aad009839516180338a0920626222d0d93c7bfadd5d2df42e6d56a49960a0fb19062def33c494179a5d05507cbca71812a4eaf135ec051b0f0c0f7bd4d1
data/CHANGELOG.md CHANGED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## [0.0.1] - 2021-12-02
4
+
5
+ - Renames `:font_awesome` into `:font_awesome_4` because FA v5 and v6 may have different UIDs.
6
+
7
+ ## [0.0.1] - 2021-12-02
8
+
9
+ - Initial
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- social_nets_db (0.0.1)
4
+ social_nets_db (0.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -16,7 +16,7 @@ It stores data about social nets in a Ruby hash like so:
16
16
  name: Behance
17
17
  uid: behance
18
18
  icons:
19
- font_awesome: "behance"
19
+ font_awesome_4: "behance"
20
20
  color: "#1769ff"
21
21
  url: behance.com
22
22
  tags:
@@ -54,7 +54,7 @@ ul
54
54
  - accounts.each do |account|
55
55
  - net = SocialNetsDB.find account[:net_uid]
56
56
  li
57
- = fa_icon net.icons["font_awesome"], style: "color: #{net.color}"
57
+ = fa_icon net.icons["font_awesome_4"], style: "color: #{net.color}"
58
58
  =< link_to net.name, \
59
59
  net.user_page(username: account[:username], account_id: account[:account_id]), \
60
60
  target: "_blank", \
@@ -1,7 +1,7 @@
1
1
  behance:
2
2
  name: Behance
3
3
  icons:
4
- font_awesome: behance
4
+ font_awesome_4: behance
5
5
  color: "#1769ff"
6
6
  domain: behance.com
7
7
  tags:
@@ -37,7 +37,7 @@ bitclout:
37
37
  blogger:
38
38
  name: Blogger
39
39
  icons:
40
- font_awesome: "link"
40
+ font_awesome_4: "link"
41
41
  color: "#ff8000"
42
42
  domain: blogger.com
43
43
  tags:
@@ -58,7 +58,7 @@ discord:
58
58
  dribble:
59
59
  name: Dribble
60
60
  icons:
61
- font_awesome: "dribble"
61
+ font_awesome_4: "dribble"
62
62
  color: "#ea4c89"
63
63
  domain: dribble.com
64
64
  tags:
@@ -72,13 +72,12 @@ dribble:
72
72
  email:
73
73
  name: E-mail
74
74
  icons:
75
- font_awesome: "at"
75
+ font_awesome_4: "envelope-o"
76
76
  color: "#ea4c89"
77
- domain: gmail.com
78
77
  tags:
79
78
  - protocols
80
79
  profile_url:
81
- by_username: ${uid}
80
+ by_username: "mailto:${uid}"
82
81
 
83
82
  ens:
84
83
  name: Ethereum namespace
@@ -86,14 +85,15 @@ ens:
86
85
  color: "#5284ff"
87
86
  domain: ens.domains
88
87
  tags:
89
- -
88
+ - crypto
89
+ - protocols
90
90
  profile_url:
91
91
  by_username: https://${uid}.eth
92
92
 
93
93
  facebook:
94
94
  name: Facebook
95
95
  icons:
96
- font_awesome: "facebook"
96
+ font_awesome_4: "facebook"
97
97
  color: "#3C5A99"
98
98
  domain: facebook.com
99
99
  tags:
@@ -195,7 +195,7 @@ hh:
195
195
  github:
196
196
  name: GitHub
197
197
  icons:
198
- font_awesome: "github"
198
+ font_awesome_4: "github"
199
199
  color: "#333333"
200
200
  domain: github.com
201
201
  tags:
@@ -208,7 +208,7 @@ github:
208
208
  gitlab:
209
209
  name: GitLab
210
210
  icons:
211
- font_awesome: "gitlab"
211
+ font_awesome_4: "gitlab"
212
212
  color: "#fa7035"
213
213
  domain: gitlab.com
214
214
  tags:
@@ -220,7 +220,7 @@ gitlab:
220
220
  instagram:
221
221
  name: Instagram
222
222
  icons:
223
- font_awesome: "instagram"
223
+ font_awesome_4: "instagram"
224
224
  color: "#e1306c"
225
225
  domain: instagram.com
226
226
  tags:
@@ -241,7 +241,7 @@ lbry:
241
241
  linkedin:
242
242
  name: LinkedIn
243
243
  icons:
244
- font_awesome: "linkedin"
244
+ font_awesome_4: "linkedin"
245
245
  color: "#0077b5"
246
246
  domain: linkedin.com
247
247
  tags:
@@ -253,7 +253,7 @@ linkedin:
253
253
  livejournal:
254
254
  name: LiveJournal
255
255
  icons:
256
- font_awesome: "livejournal"
256
+ font_awesome_4: "livejournal"
257
257
  color: "#00A3D9"
258
258
  domain: livejournal.com
259
259
  tags:
@@ -287,7 +287,7 @@ manosphere:
287
287
  medium:
288
288
  name: Medium
289
289
  icons:
290
- font_awesome: "medium"
290
+ font_awesome_4: "medium"
291
291
  color: "#00ab6c"
292
292
  domain: medium.com
293
293
  tags:
@@ -334,7 +334,7 @@ odysee:
334
334
  odnoklassniki:
335
335
  name: Одноклассники
336
336
  icons:
337
- font_awesome: "odnoklassniki"
337
+ font_awesome_4: "odnoklassniki"
338
338
  color: "#e47d08"
339
339
  domain: ok.ru
340
340
  tags:
@@ -346,7 +346,7 @@ odnoklassniki:
346
346
  paypal:
347
347
  name: PayPal
348
348
  icons:
349
- font_awesome: "paypal"
349
+ font_awesome_4: "paypal"
350
350
  color: "#0070ba"
351
351
  domain: paypal.com
352
352
  tags:
@@ -390,7 +390,7 @@ rokfin:
390
390
  rumble:
391
391
  name: Rumble
392
392
  icons:
393
- font_awesome: "play-circle"
393
+ font_awesome_4: "play-circle"
394
394
  color: "#74a441"
395
395
  domain: rumble.com
396
396
  tags:
@@ -402,7 +402,7 @@ rumble:
402
402
  stackoverflow:
403
403
  name: StackOverflow
404
404
  icons:
405
- font_awesome: "stackoverflow"
405
+ font_awesome_4: "stackoverflow"
406
406
  color: "#F48024"
407
407
  domain: stackoverflow.com
408
408
  tags:
@@ -435,7 +435,7 @@ substack:
435
435
  telegram:
436
436
  name: Telegram
437
437
  icons:
438
- font_awesome: "telegram"
438
+ font_awesome_4: "telegram"
439
439
  color: "#0088cc"
440
440
  domain: telegram.com
441
441
  tags:
@@ -458,7 +458,7 @@ tiktok:
458
458
  twitter:
459
459
  name: Twitter
460
460
  icons:
461
- font_awesome: "twitter"
461
+ font_awesome_4: "twitter"
462
462
  color: "#1da1f2"
463
463
  domain: twitter.com
464
464
  tags:
@@ -481,7 +481,7 @@ upwork:
481
481
  vkontakte:
482
482
  name: Вконтакте
483
483
  icons:
484
- font_awesome: "vk"
484
+ font_awesome_4: "vk"
485
485
  color: "#45668e"
486
486
  domain: vkontakte.com
487
487
  tags:
@@ -493,7 +493,7 @@ vkontakte:
493
493
  youtube:
494
494
  name: YouTube
495
495
  icons:
496
- font_awesome: "youtube"
496
+ font_awesome_4: "youtube"
497
497
  color: "#ff0000"
498
498
  domain: youtube.com
499
499
  tags:
@@ -505,7 +505,7 @@ youtube:
505
505
  youtube_profile:
506
506
  name: YouTube
507
507
  icons:
508
- font_awesome: "youtube"
508
+ font_awesome_4: "youtube"
509
509
  color: "#ff0000"
510
510
  domain: youtube.com
511
511
  tags:
@@ -516,7 +516,7 @@ youtube_profile:
516
516
  website:
517
517
  name: Web site
518
518
  icons:
519
- font_awesome: "link"
519
+ font_awesome_4: "link"
520
520
  color: "#ff0000"
521
521
  domain:
522
522
  tags:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class SocialNetsDB
4
- VERSION = "0.0.1".freeze
4
+ VERSION = "0.0.2".freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_nets_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Pedan