create_awesome_readme 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: d8e57179de1850594634204e237286040a5634f4
4
- data.tar.gz: 617bd48e029b4d717368835293a572a9f92f76b3
3
+ metadata.gz: 5d8e0aeab05347e5fd80c2d2e80820ccf38d8d33
4
+ data.tar.gz: 6044ecbf5c4484da21f86967d19fc44588baf5f2
5
5
  SHA512:
6
- metadata.gz: 71c93913bbc52bb6a47980c494086489b4ff95c04fd4dfa061d99634c927c17b302c11e5fb32ef364771455fbad55ef87a307bdbb3ad397cc138c511474a5067
7
- data.tar.gz: 87ff7a0bb90aa61dcb7afa2b697012857b69b883aa20ff0e5ec8132c4450c8b8143169dcd478f85e1e86e33155f0b07fee6f20b8c6a6536fff0a7610f710dbad
6
+ metadata.gz: 238677c7b91b1b1066208e69c285b559168a74f2222b143655e66a5d3b14f12218076423a4980270faf946573da8df5e65e5cf7646c199a11a1e61fac77d872b
7
+ data.tar.gz: 7d4e6749110bd35fde74216b6d4404efc5f7d0ac95d8d1728d44d4927d769970c4a0de9acdc5d96c9661a99f82cf6bf579a85ea7045fcb8bd6ab5b7a28a138a8
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # CreateAwesomeReadme
2
2
 
3
- TODO: Write a gem description
3
+ This is an attempt to create a gem which helps GitHub users to create awesome README.md files. It should help them create consistent and detailed READMEs with a template which they edit with appropriate details.
4
4
 
5
5
  ## Installation
6
6
 
@@ -20,7 +20,7 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- TODO: Write usage instructions here
23
+ $ create_awesome_readme
24
24
 
25
25
  ## Contributing
26
26
 
@@ -28,4 +28,4 @@ TODO: Write usage instructions here
28
28
  2. Create your feature branch (`git checkout -b my-new-feature`)
29
29
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
30
  4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
31
+ 5. Create a new Pull Request
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Stephen Giles"]
10
10
  spec.email = [""]
11
11
  spec.summary = "A gem to create awesome README.md on GitHub"
12
- spec.description = "This is an attempt to create a gem which helps GitHub users to create good README.md files. It should help them create consistent and detailed READMEs with a template which they edit with appropriate details."
12
+ spec.description = "This is an attempt to create a gem which helps GitHub users to create awesome README.md files. It should help them create consistent and detailed READMEs with a template which they edit with appropriate details."
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  class CreateAwesomeReadme
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -6,6 +6,6 @@ class CreateAwesomeReadme
6
6
  end
7
7
 
8
8
  def add_contents
9
- system "cat template.txt > README.md"
9
+ system "curl "https://raw.githubusercontent.com/HatStephens/create_awesome_readme/master/template.txt" > README.md"
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: create_awesome_readme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Giles
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: This is an attempt to create a gem which helps GitHub users to create
56
- good README.md files. It should help them create consistent and detailed READMEs
56
+ awesome README.md files. It should help them create consistent and detailed READMEs
57
57
  with a template which they edit with appropriate details.
58
58
  email:
59
59
  - ''