make_me_a_gem_called 0.0.6 → 0.0.7

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: 5a6123d6c95761338ad9c9b6c4bb801e5f32b63e
4
- data.tar.gz: 8010f32040f96051d1e8170239c24492f70c1363
3
+ metadata.gz: 85d03b07b9a239a2cfdaaf84677db780b21c61c1
4
+ data.tar.gz: 90e3d4a9c9cf0cb6a66ce1d9011294c977053380
5
5
  SHA512:
6
- metadata.gz: d4f87be7d5e814e8f69b3e0233db0c9d868a14facdf2cbeed94a3737790b3a9cfec4343b21fcde06c4accd3f121e1c1b1b3086a8fd3d0f0f250d6c0a2b1665b3
7
- data.tar.gz: 8bd03638df4b3f0bc44229772fefd1c23a2ecbdec05ba097c591f0be5eef0bbeed48c3da14431db4c5232e7cf510bb104289b2717f6e060bb4b6a83389d99043
6
+ metadata.gz: c5da7737003d745fbd7f874a82d6d7ba0bde9bf66f7e29b222b4a7360dade23a66647b4a5209b25805d7fcc7668af0563c25af14481e91e508430e03e0ee4e85
7
+ data.tar.gz: a891fe34af94cfe738a174855a42c58ba09e118bb654a0772f3b54e778948ece34a180f42512f883008d6c9510194b14f44659dd3b771dad82342995a1f5eb01
@@ -7,13 +7,13 @@ gem = MakeMeAGemCalled.new(ARGV.first)
7
7
  gem.create_with_bundle
8
8
  gem.change_into_directory
9
9
  gem.create_spec_files
10
- gem.add_to_spec_files
11
- gem.add_require_relative_to_main_file
12
- gem.command_line_question
13
- gem.create_bin_files if gem.command_line?
14
- gem.add_to_bin_files if gem.command_line?
15
- gem.rspec_question
16
- gem.create_tasks_files if gem.rspec?
17
- gem.add_to_tasks_files if gem.rspec?
18
- gem.add_to_rake_file if gem.rspec?
19
- gem.instructions
10
+ # gem.add_to_spec_files
11
+ # gem.add_require_relative_to_main_file
12
+ # gem.command_line_question
13
+ # gem.create_bin_files if gem.command_line?
14
+ # gem.add_to_bin_files if gem.command_line?
15
+ # gem.rspec_question
16
+ # gem.create_tasks_files if gem.rspec?
17
+ # gem.add_to_tasks_files if gem.rspec?
18
+ # gem.add_to_rake_file if gem.rspec?
19
+ # gem.instructions
@@ -33,7 +33,7 @@ class MakeMeAGemCalled
33
33
  end
34
34
 
35
35
  def command_line_question
36
- "Would you like to run this gem in the command line? Y/N"
36
+ puts "Would you like to run this gem in the command line? Y/N"
37
37
  @command_line = gets.chomp
38
38
  end
39
39
 
@@ -42,7 +42,7 @@ class MakeMeAGemCalled
42
42
  end
43
43
 
44
44
  def rspec_question
45
- "Would you like to use RSpec to test this gem? Y/N"
45
+ puts "Would you like to use RSpec to test this gem? Y/N"
46
46
  @rspec = gets.chomp
47
47
  end
48
48
 
@@ -1,3 +1,3 @@
1
1
  class MakeMeAGemCalled
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: make_me_a_gem_called
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Giles