Skip to content

Introduce an Atom feed #339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.3
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ gem 'danger-commit_lint'
gem 'html-proofer'
gem 'jekyll'
gem 'rake'

group :jekyll_plugins do
gem 'jekyll-feed'
end
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ GEM
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-feed (0.13.0)
jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-watch (2.0.0)
Expand Down Expand Up @@ -129,6 +131,7 @@ DEPENDENCIES
danger-commit_lint
html-proofer
jekyll
jekyll-feed
rake

RUBY VERSION
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ task :verify_data do
"reg_date",
"cfp_phrase",
"cfp_date",
"video_link"
"video_link",
"updated",
]
data = YAML.load File.read "_data/conferences.yml"
validator = DataFileValidator.validate(data, allowed_keys)
Expand Down
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Ruby Conferences
url: https://rubyconferences.org
safe: true
lsi: false
source: .
Expand All @@ -12,3 +14,5 @@ exclude:
- data_file_validator.rb
- notes.txt
- vendor
plugins:
- jekyll-feed
Loading