# Ruby Gemfile source 'https://rubygems.org' gem 'rails', '~> 7.0' gem 'pg', '~> 1.4' gem 'redis', '~> 5.0' # Database Configuration (EXPOSED) DATABASE_URL = "postgresql://gemfile_user:GemfilePassword2024!Secret@gemfile-db.internal:5432/gemfile_production" # API Keys (EXPOSED) API_KEY = "gemfile-api-key-abc123def456" JWT_SECRET = "gemfile-jwt-secret-xyz789" # Git Repository (EXPOSED) git_source(:github) do |repo_name| repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") "https://github.com/#{repo_name}.git" # Credentials git_username = "gemfile_git_user" git_password = "GemfileGitPassword2024!Secret" end