.
|-- app/
| `-- assets/
| |-- fonts/
| |-- images/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
graph [ | |
nodesep = 0.5 | |
rankdir = LR | |
ranksep = 0.8 | |
] | |
node [ | |
fontsize = 18 | |
shape = polygon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
gem "activerecord", "6.0.0.beta1", require: "active_record" | |
gem "sqlite3" | |
end | |
ActiveRecord::Base.logger = Logger.new(STDOUT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.5.1 | |
WORKDIR /app | |
RUN gem install bundler -v 2.0.1 | |
COPY \ | |
Gemfile \ | |
Gemfile.lock \ | |
/app/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'rails', '5.1.6' | |
end | |
require 'action_controller/railtie' | |
require 'minitest/autorun' |
$ tsc --init
message TS6071: Successfully created a tsconfig.json file.
$ cat -e tsconfig.json | tail
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */$
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */$
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */$
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */$
$
/* Experimental Options */$
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'activerecord', '5.2.0', require: 'active_record' | |
gem 'sqlite3' | |
end | |
ActiveRecord::Base.establish_connection( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text = <<EOS | |
.a | |
.a | |
-a | |
+a | |
+a | |
.a | |
-a | |
-a | |
+a |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 78842a4c6617fa5b244758362f5e154600faf3ef | |
Author: r7kamura <[email protected]> | |
Date: Sat Nov 10 23:27:26 2018 +0900 | |
WIP | |
diff --git a/faq/block.rd b/faq/block.rd | |
index 0fd28605..6f2e1526 100644 | |
--- a/faq/block.rd | |
+++ b/faq/block.rd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
RSpec.describe RuboCop::Cop::Style::RegexpLiteral, :config do | |
subject(:cop) { described_class.new(config) } | |
let(:config) do | |
supported_styles = { | |
'SupportedStyles' => %w[slashes percent_r mixed] | |
} | |
RuboCop::Config.new('Style/PercentLiteralDelimiters' => |