Commit c01ac497 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Mark --stats as experimental and --meta-tags as not.

I guess meta-tags feature is now quite as solid as most of the other
stuff, while stats is a really new thing.
parent e9ff83e1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ module JsDuck

        opts.on('--meta-tags=PATH',
          "Path to Ruby file or directory with custom",
          "meta-tag implementations. Experimantal!", " ") do |path|
          "meta-tag implementations.", " ") do |path|
          @meta_tag_paths << canonical(path)
        end

@@ -212,7 +212,8 @@ module JsDuck
          @examples = canonical(path)
        end

        opts.on('--stats', "Creates page with all kinds of statistics.", " ") do
        opts.on('--stats',
          "Creates page with all kinds of statistics. Experimental!", " ") do
          @stats = true
        end