mirror of
https://github.com/github/choosealicense.com
synced 2025-02-12 21:53:47 +01:00
![Rishabh Chakrabarti](/assets/img/avatar_default.png)
This link will direct anyone who wants to edit this page directly to the Github path which contains the file. CHANGELOG : 1. Added the [GitHub Metadata] (http://jekyll.github.io/github-metadata/) plugin to Gemfile and Plugins 2. Added the link to the sidebar for license pages. Github issue #433
26 lines
444 B
Ruby
26 lines
444 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
require 'json'
|
|
require 'open-uri'
|
|
versions = JSON.parse(open('https://pages.github.com/versions.json').read)
|
|
|
|
gem 'github-pages', versions['github-pages']
|
|
|
|
gem "jekyll-github-metadata"
|
|
|
|
group :development do
|
|
gem 'colored'
|
|
gem 'fuzzy_match'
|
|
gem 'terminal-table'
|
|
end
|
|
|
|
group :test do
|
|
gem 'html-proofer', '~> 3.0'
|
|
gem 'licensee'
|
|
gem 'rake'
|
|
gem 'rspec'
|
|
gem 'rubocop'
|
|
end
|