mirror of
https://github.com/restincode/restincode.git
synced 2026-06-11 08:15:18 +02:00
Added the following files: - .ruby-version: Specifies the Ruby version to be used in the project. This helps ensure compatibility and consistency across different environments. - .sourcery.yaml: Sourcery configuration file that allows customization of Sourcery's behavior, such as ignoring specific refactorings or skipping directories. - Gemfile: Specifies the dependencies for the project, including gems like 'github-pages', 'html-proofer', 'rake', and 'webrick'. - Rakefile: Defines tasks for building, cleaning, and serving the Jekyll site, as well as checking links. These files were added to enhance the project's Ruby environment, configure Sourcery, manage dependencies, and automate common tasks in the Jekyll site development process.
5 lines
93 B
Ruby
5 lines
93 B
Ruby
source 'https://rubygems.org'
|
|
gem 'github-pages'
|
|
gem 'html-proofer'
|
|
gem 'rake'
|
|
gem 'webrick'
|