5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 04:40:48 +00:00

usar symbol-fstring #177

This commit is contained in:
f 2020-09-29 18:36:51 -03:00
parent b90f768865
commit 4fea15dcfa
5 changed files with 11 additions and 0 deletions

View file

@ -63,6 +63,7 @@ gem 'redis-rails'
gem 'rubyzip'
gem 'rugged'
gem 'sucker_punch'
gem 'symbol-fstring', require: 'fstring/all'
gem 'terminal-table'
gem 'validates_hostname'
gem 'webpacker'

View file

@ -505,6 +505,7 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
symbol-fstring (1.0.0)
sysexits (1.2.0)
temple (0.8.2)
terminal-table (1.8.0)
@ -613,6 +614,7 @@ DEPENDENCIES
sutty-donaciones-jekyll-theme
sutty-jekyll-theme
sutty-minima
symbol-fstring
terminal-table
timecop
turbolinks (~> 5)

4
app/models/access_log.rb Normal file
View file

@ -0,0 +1,4 @@
# frozen_string_literal: true
class AccessLog < ApplicationRecord
end

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
# Establece una relación de muchos a muchos artículos. Cada campo es un
# Array de UUID que se mantienen sincronizados.
#

View file

@ -1 +1,3 @@
# frozen_string_literal: true
class MetadataTel < MetadataNumber; end