Merge pull request #1462 from malkoG/rails-6.1

Update Rails documentation (6.1.0)
pull/1467/head
Simon Legner 4 years ago committed by GitHub
commit 8d056e063e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -718,7 +718,7 @@ credits = [
'https://www.ruby-lang.org/en/about/license.txt' 'https://www.ruby-lang.org/en/about/license.txt'
], [ ], [
'Ruby on Rails', 'Ruby on Rails',
'2004-2019 David Heinemeier Hansson<br>Rails, Ruby on Rails, and the Rails logo are trademarks of David Heinemeier Hansson.', '2004-2020 David Heinemeier Hansson<br>Rails, Ruby on Rails, and the Rails logo are trademarks of David Heinemeier Hansson.',
'MIT', 'MIT',
'https://raw.githubusercontent.com/rails/rails/master/activerecord/MIT-LICENSE' 'https://raw.githubusercontent.com/rails/rails/master/activerecord/MIT-LICENSE'
], [ ], [

@ -23,9 +23,10 @@ module Docs
end end
css('pre').each do |node| css('pre').each do |node|
language = node['class'][/brush: ?(\w+)/, 1] code = node.at_css('code')
language = code['class'][/highlight ?(\w+)/, 1]
node['data-language'] = language unless language == 'plain' node['data-language'] = language unless language == 'plain'
node.remove_attribute('class') code.remove_attribute('class')
node.content = node.content.strip node.content = node.content.strip
end end

@ -72,17 +72,21 @@ module Docs
options[:attribution] = ->(filter) do options[:attribution] = ->(filter) do
if filter.slug.start_with?('guides') if filter.slug.start_with?('guides')
<<-HTML <<-HTML
&copy; 2004&ndash;2019 David Heinemeier Hansson<br> &copy; 2004&ndash;2020 David Heinemeier Hansson<br>
Licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. Licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
HTML HTML
else else
<<-HTML <<-HTML
&copy; 2004&ndash;2019 David Heinemeier Hansson<br> &copy; 2004&ndash;2020 David Heinemeier Hansson<br>
Licensed under the MIT License. Licensed under the MIT License.
HTML HTML
end end
end end
version '6.1' do
self.release = '6.1.1'
end
version '6.0' do version '6.0' do
self.release = '6.0.0' self.release = '6.0.0'
end end

Loading…
Cancel
Save