File: version.rb

package info (click to toggle)
ruby-i18n-inflector-rails 1.0.7-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 332 kB
  • sloc: ruby: 465; makefile: 7
file content (30 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# encoding: utf-8
#
# Author::    Paweł Wilk (mailto:pw@gnu.org)
# Copyright:: (c) 2011-2013 by by Paweł Wilk
# License::   This program is licensed under the terms of {file:LGPL-LICENSE GNU Lesser General Public License} or {file:COPYING Ruby License}.
# 
# This file contains version information.

module I18n
  module Inflector
    module Rails

      # @private
      DEVELOPER   = 'Paweł Wilk'
      # @private
      EMAIL       = 'pw@gnu.org'
      # @private
      VERSION     = '1.0.7'
      # @private
      NAME        = 'i18n-inflector-rails'
      # @private
      SUMMARY     = 'I18n Inflector bindings for Rails'
      # @private
      URL         = 'https://rubygems.org/gems/i18n-inflector-rails/'
      # @private
      DESCRIPTION = 'Plug-in that provides I18n Inflector module integration with Rails.'

    end
  end
end