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
content_tag :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' ) + ' - ' +
content_tag( :span, "Ruby/#{RUBY_VERSION} (#{RUBY_RELEASE_DATE}/#{RUBY_PLATFORM}) on") + ' ' +
content_tag( :span, "Rails/#{Rails.version} (#{Rails.env})" ) + " | " +
link_to( 'Icon Drawer Flags', 'http://www.icondrawer.com' )
end
end
|