File: version.rb

package info (click to toggle)
ruby-spring 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 428 kB
  • sloc: ruby: 3,373; sh: 9; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
require "spring/version"

module Spring
  module Client
    class Version < Command
      def call
        puts "Spring version #{Spring::VERSION}"
      end
    end
  end
end