File: version.rb

package info (click to toggle)
ruby-spring 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 364 kB
  • ctags: 429
  • sloc: ruby: 2,762; makefile: 6
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