quick_copyright_text 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 +4 -4
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +1 -1
- data/README.md +7 -5
- data/lib/quick_copyright_text/version.rb +1 -1
- data/quick_copyright_text.gemspec +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4cb4be023e46a9a639a53881d61cc6a85bf3fed1d2c275268ddf6562991f4359
|
|
4
|
+
data.tar.gz: 176c8e7216ea558c90145a3d3802197ab64184003aa4a6b80b3435d53c6267c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 389b53c8789947a84f9af8c7b4127c7dff76f8452aa41a6ff5a0f4841b0819268312a6484c163efbe4683e7f02fa64dddd12680fba26494c34d7bd948d94bac8
|
|
7
|
+
data.tar.gz: b2d00c67c4e2fe3a6f5bcaffe9d10983702c28a1658fe4270f5aa2b4cb0f4e257027a9a1988b169d5e93e7b983cb5348dc84b8efea69db8406c5d874747cb23d
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
quick_copyright_text (0.1.1)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.5.0)
|
|
11
|
+
rspec (3.9.0)
|
|
12
|
+
rspec-core (~> 3.9.0)
|
|
13
|
+
rspec-expectations (~> 3.9.0)
|
|
14
|
+
rspec-mocks (~> 3.9.0)
|
|
15
|
+
rspec-core (3.9.0)
|
|
16
|
+
rspec-support (~> 3.9.0)
|
|
17
|
+
rspec-expectations (3.9.0)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.9.0)
|
|
20
|
+
rspec-mocks (3.9.0)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.9.0)
|
|
23
|
+
rspec-support (3.9.0)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
bundler (~> 2.0)
|
|
30
|
+
quick_copyright_text!
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
rspec (~> 3.0)
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
2.0.2
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# QuickCopyrightText
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**This is a Gem I built while following a course. It's not worth installing as it offers very little**
|
|
4
|
+
|
|
5
|
+
Quickly add copyright text to your website including the copyright symbol, an option to add a custom name and custom text
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -12,16 +14,16 @@ gem 'quick_copyright_text'
|
|
|
12
14
|
|
|
13
15
|
And then execute:
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
`$ bundle`
|
|
16
18
|
|
|
17
19
|
Or install it yourself as:
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
`$ gem install quick_copyright_text`
|
|
20
22
|
|
|
21
23
|
## Usage
|
|
22
24
|
|
|
23
25
|
```ruby
|
|
24
|
-
|
|
26
|
+
QuickCopyrightText::Renderer.copyright("Mark Mead", "All rights reserved")
|
|
25
27
|
```
|
|
26
28
|
|
|
27
29
|
## Development
|
|
@@ -32,7 +34,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
34
|
|
|
33
35
|
## Contributing
|
|
34
36
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/markmead/quick_copyright_text.
|
|
36
38
|
|
|
37
39
|
## License
|
|
38
40
|
|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["itsmarkmead@gmail.com"]
|
|
10
10
|
|
|
11
11
|
spec.summary = %q{Quickly add copyright text to your website}
|
|
12
|
-
spec.description = %q{
|
|
12
|
+
spec.description = %q{Quickly add copyright text to your website including the copyright symbol, an option to add a custom name and custom text}
|
|
13
13
|
spec.homepage = "https://github.com/markmead/quick_copyright_text"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quick_copyright_text
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- markmead
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: Quickly add copyright text to your website including the copyright symbol,
|
|
56
|
+
an option to add a custom name and custom text
|
|
56
57
|
email:
|
|
57
58
|
- itsmarkmead@gmail.com
|
|
58
59
|
executables: []
|
|
@@ -63,6 +64,7 @@ files:
|
|
|
63
64
|
- ".rspec"
|
|
64
65
|
- ".travis.yml"
|
|
65
66
|
- Gemfile
|
|
67
|
+
- Gemfile.lock
|
|
66
68
|
- LICENSE.txt
|
|
67
69
|
- README.md
|
|
68
70
|
- Rakefile
|