if rails.env.development

if Rails.env.development?
  # Code to be executed in the development environment

  # Example: Print a message to the console
  puts "This is the development environment"

  # Example: Set a configuration option specific to development
  config.some_option = true
end