Showing 48 of 48 total issues
Similar blocks of code found in 2 locations. Consider refactoring. Open
csv << [ index + 1, pilot.name, context.pilot_url(pilot.id), ship.name,
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
csv << [ index + 1, upgrade.name, context.upgrade_url(upgrade.id), upgrade.upgrade_type,
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
csv << [ context.t('upgrades.csv.position'), context.t('upgrades.csv.upgrade_name'), context.t('upgrades.csv.link'), context.t('upgrades.csv.upgrade_type'),
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
def generate_ships(context, ships, ship_pilots, ids = []) ships.map.with_index do |ship, index| if ids.empty? || ids.map(&:to_i).include?(ship.id) generate_ship(context, ship, ship_pilots, index + 1) end
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
def generate_pilots(context, pilots, ids = []) pilots.map.with_index do |pilot, index| if ids.empty? || ids.map(&:to_i).include?(pilot.id) generate_pilot(context, pilot, index + 1) end
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
def generate_upgrades(context, upgrades, ids = []) upgrades.map.with_index do |upgrade, index| if ids.empty? || ids.map(&:to_i).include?(upgrade.id) generate_upgrade(context, upgrade, index + 1) end
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
def show about = File.read(Rails.root + 'ABOUT.md') markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true, tables: true) @html_about = markdown.render(about)
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
def index changelog = File.read(Rails.root + 'CHANGELOG.md') markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true, tables: true) @html_changelog = markdown.render(changelog)
- Read upRead up