aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/cli/gem.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-01-25 18:59:31 -0800
committerAndre Arko <andre@arko.net>2015-01-25 23:30:18 -0800
commit30903263a4ff69275f4075742dc2ab928de31167 (patch)
tree5dbf792f5b7cd9d9b534785147dd8a0aa66c23cb /lib/bundler/cli/gem.rb
parent25f55d96e79f34575fb45da27379091666d48f61 (diff)
downloadbundler-30903263a4ff69275f4075742dc2ab928de31167.tar.gz
clean up and reword a bit asking about gem files
Diffstat (limited to 'lib/bundler/cli/gem.rb')
-rw-r--r--lib/bundler/cli/gem.rb31
1 files changed, 25 insertions, 6 deletions
diff --git a/lib/bundler/cli/gem.rb b/lib/bundler/cli/gem.rb
index e99a13b1..2bb0b53a 100644
--- a/lib/bundler/cli/gem.rb
+++ b/lib/bundler/cli/gem.rb
@@ -16,6 +16,8 @@ module Bundler
end
def run
+ Bundler.ui.confirm "Creating gem '#{name}'..."
+
underscored_name = name.tr('-', '_')
namespaced_path = name.tr('-', '/')
constant_name = name.split('_').map{|p| p[0..0].upcase + p[1..-1] }.join
@@ -47,11 +49,21 @@ module Bundler
"README.md.tt" => "README.md"
}
- if ask_and_set(:coc, "Do you want to include Code Of Conduct?")
+ if ask_and_set(:coc, "Do you want to include a code of conduct in gems you generate?",
+ "Codes of conduct can increase contributions to your project by contributors who " \
+ "prefer collaborative, safe spaces. You can read more about the code of conduct at " \
+ "contributor-covenant.org. Having a code of conduct means agreeing to the responsibility " \
+ "of enforcing it, so be sure that you are prepared to do that. For suggestions about " \
+ "how to enforce codes of conduct, see bit.ly/coc-enforcement."
+ )
templates.merge!("CODE_OF_CONDUCT.md.tt" => "CODE_OF_CONDUCT.md")
end
- if ask_and_set(:mit, "Do you want to license your code permissively under the MIT license (http://choosealicense.com/licenses/mit/)?")
+ if ask_and_set(:mit, "Do you want to license your code permissively under the MIT license?",
+ "This means that any other developer or company will be legally allowed to use your code " \
+ "for free as long as they admit you created it. You can read more about the MIT license " \
+ "at choosealicense.com/licenses/mit."
+ )
templates.merge!("LICENSE.txt.tt" => "LICENSE.txt")
end
@@ -102,11 +114,12 @@ module Bundler
Pathname.pwd.join(name).basename.to_s
end
- def ask_and_set(key, message)
+ def ask_and_set(key, header, message)
result = options[key]
if !Bundler.settings.all.include?("gem.#{key}")
if result.nil?
- result = Bundler.ui.ask("#{message} (y/n):") == "y"
+ Bundler.ui.confirm header
+ result = Bundler.ui.ask("#{message} y/(n):") == "y"
end
Bundler.settings.set_global("gem.#{key}", result)
@@ -128,8 +141,14 @@ module Bundler
def ask_and_set_test_framework
test_framework = options[:test] || Bundler.settings["gem.test"]
if test_framework.nil?
- result = Bundler.ui.ask("Would like to generate tests along with their gems? (rspec/minitest/false):")
- test_framework = result == "false" ? false : result
+ Bundler.ui.confirm "Do you want to generate tests with your gem?"
+ result = Bundler.ui.ask "Type 'rspec' or 'minitest' to generate those test files now and " \
+ "in the future. rspec/minitest/(none):"
+ if result =~ /rspec|minitest/
+ test_framework = result
+ else
+ test_framework = "false"
+ end
end
if Bundler.settings["gem.test"].nil?