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 +4 -4
- data/bin/make_me_a_gem_called +10 -10
- data/lib/make_me_a_gem_called.rb +2 -2
- data/lib/make_me_a_gem_called/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85d03b07b9a239a2cfdaaf84677db780b21c61c1
|
|
4
|
+
data.tar.gz: 90e3d4a9c9cf0cb6a66ce1d9011294c977053380
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5da7737003d745fbd7f874a82d6d7ba0bde9bf66f7e29b222b4a7360dade23a66647b4a5209b25805d7fcc7668af0563c25af14481e91e508430e03e0ee4e85
|
|
7
|
+
data.tar.gz: a891fe34af94cfe738a174855a42c58ba09e118bb654a0772f3b54e778948ece34a180f42512f883008d6c9510194b14f44659dd3b771dad82342995a1f5eb01
|
data/bin/make_me_a_gem_called
CHANGED
|
@@ -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
|
data/lib/make_me_a_gem_called.rb
CHANGED
|
@@ -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
|
|