quotify 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54b8fa36bdbf2498482bc462018f7581fd636b118d48afa8e3eb4f17f22ca4b4
4
- data.tar.gz: e5e86fb909e7b66d992f6b980cec416288698cf2f71e76adcfb8484d25c56fd9
3
+ metadata.gz: 8f8b5ba09213aaa7238a8fd474560a9161fa5d6f6cda18137ef930d9d150b466
4
+ data.tar.gz: 321fa9889c476be3d53208e1d405db2f10df7d8639345dc728ef1744cbc32d30
5
5
  SHA512:
6
- metadata.gz: ed4a6618f5b10a864373c8ee4db29d6f97843f36e18950280ad01ed19b30085d83224f63c2627c41472d25a27cd89882c46dba950bb80e58dfd747526a973f27
7
- data.tar.gz: 4b45f4e4880439a9976bf5524f7dd50c2c282b84563c560e9969e60c39560fbc9e857c71055ec380db095f06cb74b1dd740a0c997989e8ac2360e80eca773968
6
+ metadata.gz: 6a820edc5b569fddb1ee22f5fb3897e05ef95f27db82af818e0684ba95440e332dd04e86b7499bffc83dd60eef2c5ac0353e85fdca5acdc5625488ad0b3565dc
7
+ data.tar.gz: 6bc7e2d329df8156ca1c3f615ba77839c9fc1b4f298a75332207547b44599f4219962b259ce3d4af8c55efb040aefbe184b52a781ec64ce97b4ee209a58cb586
@@ -1 +1,5 @@
1
- ok
1
+ ## V0.1.1
2
+ Fixes documentations formatting. No additional features were added.
3
+
4
+ ## V0.1.0
5
+ First release. Everything is new
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017 Justin Léger
3
+ Copyright (c) 2018 Justin Léger
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -8,10 +8,6 @@ module Quotify
8
8
  # @param quote [#to_s] A specified quote
9
9
  # @param author [#to_s] A specified author
10
10
  # @return [Quotify::Quote] quote with author
11
- # <br>
12
- # Example:
13
- # >> Quotify.generate
14
- # => #<Quotify::Quote:0x00007f8a44053978 @quote="You must be the change you wish to see in the world.", @author="Logan Paul">
15
11
  def self.generate(quote: nil, author: nil)
16
12
  Quote.new(quote: quote, author: author)
17
13
  end
@@ -19,10 +19,6 @@ module Quotify
19
19
 
20
20
  # Returns the quote and author in a string format
21
21
  # @option spacer [#to_s] Characters between quote and author
22
- # <br>
23
- # Example:
24
- # >> Quote.new.to_s(spacer: " 🔥 ")
25
- # => You must be the change you wish to see in the world. 🔥 Logan Paul
26
22
  def to_s(spacer: " - ")
27
23
  "#{@quote}#{spacer}#{@author}"
28
24
  end
@@ -30,10 +26,6 @@ module Quotify
30
26
 
31
27
  # Returns the quote and author in a string format
32
28
  # @option spacer [#to_s] Characters between quote and author
33
- # <br>
34
- # Example:
35
- # >> Quote.new.to_s(spacer: " 🔥 ")
36
- # => You must be the change you wish to see in the world. 🔥 Logan Paul
37
29
  def to_str(spacer: " - ")
38
30
  to_s(spacer: spacer)
39
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quotify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Leger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-30 00:00:00.000000000 Z
11
+ date: 2018-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json