quick_copyright_text 0.1.0 → 0.1.1

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: 70beea233b536946d09ea3d62935667868e8b242039d0fd916d78b4f458bee8c
4
- data.tar.gz: e847bb25aa3c1ce66ea35989b837ef98f3f8921f54402540b9a11969f7b10ae7
3
+ metadata.gz: 4cb4be023e46a9a639a53881d61cc6a85bf3fed1d2c275268ddf6562991f4359
4
+ data.tar.gz: 176c8e7216ea558c90145a3d3802197ab64184003aa4a6b80b3435d53c6267c5
5
5
  SHA512:
6
- metadata.gz: 9d8c35bc4dc19fc962109ccfc8ebc17269a4f89b16786033c803b9ad3b1424e7c0afd42be1d5cfe9a71b1137da41ca253e1069a9eac99ff89cec83622e06d4a7
7
- data.tar.gz: e969fb2ab6cc3c9e4913ba311dfb2963a97aba63147ab66b9ac1bdc74bdcf7d2ddc092a370bf4bc04cb26925de90a7ba9e4565b1b36ad35e3cebfa9b3ab8ffed
6
+ metadata.gz: 389b53c8789947a84f9af8c7b4127c7dff76f8452aa41a6ff5a0f4841b0819268312a6484c163efbe4683e7f02fa64dddd12680fba26494c34d7bd948d94bac8
7
+ data.tar.gz: b2d00c67c4e2fe3a6f5bcaffe9d10983702c28a1658fe4270f5aa2b4cb0f4e257027a9a1988b169d5e93e7b983cb5348dc84b8efea69db8406c5d874747cb23d
@@ -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
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 markmead
3
+ Copyright (c) 2019 Mark Mead
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
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # QuickCopyrightText
2
2
 
3
- Add the copyright symbol, custom name and custom text to your website
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
- $ bundle
17
+ `$ bundle`
16
18
 
17
19
  Or install it yourself as:
18
20
 
19
- $ gem install quick_copyright_text
21
+ `$ gem install quick_copyright_text`
20
22
 
21
23
  ## Usage
22
24
 
23
25
  ```ruby
24
- EasyCopyrightHelper::Renderer.copyright("Mark Mead", "All rights reserved")
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/[USERNAME]/quick_copyright_text.
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
 
@@ -1,3 +1,3 @@
1
1
  module QuickCopyrightText
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -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{Add the copyright symbol, custom name and custom text to your website}
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.0
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: Add the copyright symbol, custom name and custom text to your website
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