Class: Jekyll::Deprecator
- Inherits:
-
Object
- Object
- Jekyll::Deprecator
- Defined in:
- lib/jekyll/deprecator.rb
Class Method Summary collapse
- .arg_is_present?(args, deprecated_argument, message) ⇒ Boolean
- .deprecation_message(message) ⇒ Object
- .no_subcommand(args) ⇒ Object
- .process(args) ⇒ Object
Class Method Details
.arg_is_present?(args, deprecated_argument, message) ⇒ Boolean
26 27 28 29 30 |
# File 'lib/jekyll/deprecator.rb', line 26 def self.arg_is_present?(args, deprecated_argument, ) if args.include?(deprecated_argument) () end end |
.deprecation_message(message) ⇒ Object
32 33 34 |
# File 'lib/jekyll/deprecator.rb', line 32 def self.() Jekyll.logger.error "Deprecation:", end |
.no_subcommand(args) ⇒ Object
19 20 21 22 23 24 |
# File 'lib/jekyll/deprecator.rb', line 19 def self.no_subcommand(args) if args.size > 0 && args.first =~ /^--/ && !%w[--help --version].include?(args.first) Jekyll.logger.error "Deprecation:", "Jekyll now uses subcommands instead of just \ switches. Run `jekyll help' to find out more." end end |
.process(args) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/jekyll/deprecator.rb', line 3 def self.process(args) no_subcommand(args) arg_is_present? args, "--server", "The --server command has been replaced by the \ 'serve' subcommand." arg_is_present? args, "--no-server", "To build Jekyll without launching a server, \ use the 'build' subcommand." arg_is_present? args, "--auto", "The switch '--auto' has been replaced with '--watch'." arg_is_present? args, "--no-auto", "To disable auto-replication, simply leave off \ the '--watch' switch." arg_is_present? args, "--pygments", "The 'pygments' setting can only be set in \ your config files." arg_is_present? args, "--paginate", "The 'paginate' setting can only be set in your \ config files." arg_is_present? args, "--url", "The 'url' setting can only be set in your config files." end |