diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-27 16:37:28 -0300 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-27 16:37:28 -0300 |
commit | f6cf909476c032524ed7c404ee7c0fb270d39d58 (patch) | |
tree | b8e08c9f2525ef07490a822d15afdff6065b6d27 /railties/lib/rails | |
parent | 2e11f8e32109f078da424f0e9a550edd4f222079 (diff) | |
download | rails-f6cf909476c032524ed7c404ee7c0fb270d39d58.tar.gz rails-f6cf909476c032524ed7c404ee7c0fb270d39d58.tar.bz2 rails-f6cf909476c032524ed7c404ee7c0fb270d39d58.zip |
remove unused methods
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/generators/app_base.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb index 8983bd89fa..d0e8b69dad 100644 --- a/railties/lib/rails/generators/app_base.rb +++ b/railties/lib/rails/generators/app_base.rb @@ -154,10 +154,6 @@ module Rails new(name, comment, nil, path: path) end - def github; options[:github]; end - def path; options[:path]; end - def platforms; options[:platforms]; end - def padding(max_width) ' ' * (max_width - name.length + 2) end |