From 65b551466bb6eaff933454279fdedfe1e2160b19 Mon Sep 17 00:00:00 2001 From: Abd ar-Rahman Hamidi Date: Sat, 6 Apr 2013 19:02:13 +0500 Subject: [PATCH] Automaticly add username and email if configured in git-scm, as bundle gem --- .../generators/rails/plugin/plugin_generator.rb | 16 ++++++++++++++++ .../rails/plugin/templates/%name%.gemspec | 4 ++-- .../rails/plugin/templates/MIT-LICENSE | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/railties/lib/rails/generators/rails/plugin/plugin_generator.rb b/railties/lib/rails/generators/rails/plugin/plugin_generator.rb index f6f529b80a..1b63d5faa0 100644 --- a/railties/lib/rails/generators/rails/plugin/plugin_generator.rb +++ b/railties/lib/rails/generators/rails/plugin/plugin_generator.rb @@ -304,6 +304,22 @@ def camelized @camelized ||= name.gsub(/\W/, '_').squeeze('_').camelize end + def author + if @author.nil? + git_user_name = `git config user.name`.chomp + @author = git_user_name.empty? ? "TODO: Write your name" : git_user_name + end + @author + end + + def email + if @email.nil? + git_user_email = `git config user.email`.chomp + @email = git_user_email.empty? ? "TODO: Write your email address" : git_user_email + end + @email + end + def valid_const? if original_name =~ /[^0-9a-zA-Z_]+/ raise Error, "Invalid plugin name #{original_name}. Please give a name which use only alphabetic or numeric or \"_\" characters." diff --git a/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec b/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec index 5fdf0e1554..919c349470 100644 --- a/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec +++ b/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec @@ -7,8 +7,8 @@ Gem::Specification.new do |s| s.name = "<%= name %>" s.version = <%= camelized %>::VERSION - s.authors = ["TODO: Your name"] - s.email = ["TODO: Your email"] + s.authors = ["<%= author %>"] + s.email = ["<%= email %>"] s.homepage = "TODO" s.summary = "TODO: Summary of <%= camelized %>." s.description = "TODO: Description of <%= camelized %>." diff --git a/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE b/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE index d7a9109894..ff2fb3ba4e 100644 --- a/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE +++ b/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE @@ -1,4 +1,4 @@ -Copyright <%= Date.today.year %> YOURNAME +Copyright <%= Date.today.year %> <%= author %> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the -- GitLab