prairie-ghtpl 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: ec57b6255914553a52d0a53ba4e4b90d026f3c90f0605f2db92d74c3245d9432
4
- data.tar.gz: a18f8172219b6c919cfa13c316176b0f383340ed2e3fc35d7681b925b2929c85
3
+ metadata.gz: 868032b5d45545e9c8bae815f763afa4c046d0ec44bc137957294a4ead7916ee
4
+ data.tar.gz: 60c48c75261e9915a883d932bc020fcce50bd9377f2d1281083d9a3fba1756c4
5
5
  SHA512:
6
- metadata.gz: cf003ca125bd2ea07221e3c5391840c8f6681fe7370e343cc51adad6af63d183eabafe19be9f77b871bb32b5507e22c1c24f5de12a1bba4af2efe1ebc9e864da
7
- data.tar.gz: 9df32ba87a85555a1103a91be8b6828a6a3ace467f3a971110fc3079353cd1e66ebd80060593e09d98afaeb9bb7e48bde60b6e0caa69b2e9a4a540d71a30fc44
6
+ metadata.gz: 838501b815dc437619ca35295cf5e0ffab0e11ce618856d704f8bc1f445c739f6705c2c6b571e93b808ff04c45a3b9ea65c38c12a7e48deb782e3a8a79a87672
7
+ data.tar.gz: f911bea68c24bd636b2f2f8e74ed614ccce1b16dfb90bbe978742938043b810cbde32fb031bad1069412e1dfc2074071f485895309d48023666a402e04733267
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- prairie-ghtpl (0.1.0)
4
+ prairie-ghtpl (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module Prairie
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/prairie.rb CHANGED
@@ -46,7 +46,7 @@ module Prairie
46
46
  EOS
47
47
 
48
48
  def self.run
49
- print 'Do you want to create ./github/ISSUE_TEMPLATE.md (y/n)?'
49
+ puts 'Do you want to create ./github/ISSUE_TEMPLATE.md (y/n)?'
50
50
  input = gets.chomp
51
51
  if input == 'y'
52
52
  Dir.mkdir('./.github') unless FileTest.exist?('./.github')
@@ -54,10 +54,10 @@ module Prairie
54
54
  File.open('./.github/ISSUE_TEMPLATES.md', 'w') do |f|
55
55
  f.puts(ISSUE_TEMPLATE)
56
56
  end
57
- print 'Created! .github/ISSUE_TEMPLATES.md'
57
+ puts 'Created! .github/ISSUE_TEMPLATES.md'
58
58
  end
59
59
 
60
- print 'Do you want to create ./github/PULL_REQUEST_TEMPLATE.md (y/n)?'
60
+ puts 'Do you want to create ./github/PULL_REQUEST_TEMPLATE.md (y/n)?'
61
61
  input = gets.chomp
62
62
  if input == 'y'
63
63
  Dir.mkdir('./.github') unless FileTest.exist?('./.github')
@@ -65,17 +65,17 @@ module Prairie
65
65
  File.open('./.github/PULL_REQUEST_TEMPLATE.md', 'w') do |f|
66
66
  f.puts(PULL_REQUEST_TEMPLATE)
67
67
  end
68
- print 'Created! .github/PULL_REQUEST_TEMPLATE.md'
68
+ puts 'Created! .github/PULL_REQUEST_TEMPLATE.md'
69
69
  end
70
70
 
71
- print 'Do you want to create ./.gitmessage (y/n)?'
71
+ puts 'Do you want to create ./.gitmessage (y/n)?'
72
72
  input = gets.chomp
73
73
  if input == 'y'
74
74
  FileUtils.touch('./.gitmessage')
75
75
  File.open('./.gitmessage', 'w') do |f|
76
76
  f.puts(COMMIT_MESSAGE_TEMPLATE)
77
77
  end
78
- print 'Created! .gitmessage'
78
+ puts 'Created! .gitmessage'
79
79
  end
80
80
  end
81
81
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prairie-ghtpl
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
  - IrukNuj