🎯 主要機能: - GitHub機能の網羅的解説書 (10章構成) - 外部ツール代替戦略とコスト分析 - 実践的な設定例とベストプラクティス - 実務ケーススタディと段階的移行計画 🌐 GitHub Pages Webサイト: - Jekyll設定とレスポンシブデザイン - 自動デプロイワークフロー - 美しいランディングページ - SEO最適化とモバイル対応 📊 期待効果: - 年間37%のコスト削減 - 開発効率2倍向上 - セキュリティ強化 🚀 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
No EOL
818 B
Ruby
31 lines
No EOL
818 B
Ruby
# GitHub Pages用Gemfile
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Jekyll
|
|
gem "jekyll", "~> 4.3.0"
|
|
|
|
# GitHub Pages
|
|
gem "github-pages", group: :jekyll_plugins
|
|
|
|
# Jekyll plugins
|
|
group :jekyll_plugins do
|
|
gem "jekyll-feed", "~> 0.12"
|
|
gem "jekyll-sitemap"
|
|
gem "jekyll-seo-tag"
|
|
gem "jekyll-remote-theme"
|
|
end
|
|
|
|
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
# and associated library.
|
|
platforms :mingw, :x64_mingw, :mswin, :jruby do
|
|
gem "tzinfo", ">= 1", "< 3"
|
|
gem "tzinfo-data"
|
|
end
|
|
|
|
# Performance-booster for watching directories on Windows
|
|
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
|
|
|
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
|
# do not have a Java counterpart.
|
|
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] |