Module: SportDbAdmin::ApplicationHelper

Defined in:
app/helpers/sport_db_admin/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#powered_byObject



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/helpers/sport_db_admin/application_helper.rb', line 5

def powered_by
  ## todo/fix: use version from wettpool module
   :div do
    link_to( 'Questions? Comments?', 'http://groups.google.com/group/opensport' ) + " | " +
    link_to( "world.db/#{WorldDb::VERSION}", 'https://github.com/geraldb/world.db.ruby' )  + ', ' +
    link_to( "sport.db/#{SportDb::VERSION}", 'https://github.com/geraldb/sport.db.ruby' )  + ', ' +
    link_to( "sport.db.admin/#{SportDbAdmin::VERSION}", 'https://github.com/geraldb/sport.db.admin' ) + ' - ' + 
    ( :span, "Ruby/#{RUBY_VERSION} (#{RUBY_RELEASE_DATE}/#{RUBY_PLATFORM}) on") + ' ' +
    ( :span, "Rails/#{Rails.version} (#{Rails.env})" ) + " | " + 
    link_to( 'Icon Drawer Flags', 'http://www.icondrawer.com' )
    ## content_tag( :span, "#{request.headers['SERVER_SOFTWARE'] || request.headers['SERVER']}" )
  end
end