-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use double quotes for strings and prefer .() over .call
- Loading branch information
1 parent
357a6ab
commit 4a6ebfd
Showing
82 changed files
with
943 additions
and
942 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | ||
|
||
# Specify your gem's dependencies in web_pipe.gemspec | ||
gemspec | ||
|
||
group :development do | ||
gem 'dry-schema', '~> 1.0' | ||
gem 'dry-transformer', '~> 0.1' | ||
gem 'pry-byebug' | ||
gem 'rack-flash3', '~> 1.0' | ||
gem 'rack-test', '~> 1.1' | ||
gem 'rake', '~> 12.3', '>= 12.3.3' | ||
gem 'redcarpet', '~> 3.4' | ||
gem 'rspec', '~> 3.0' | ||
gem 'rubocop', '~> 1.8' | ||
gem 'rubocop-rspec', '~> 2.1' | ||
gem 'yard', '~> 0.9', '>= 0.9.20' | ||
gem "dry-schema", "~> 1.0" | ||
gem "dry-transformer", "~> 0.1" | ||
gem "pry-byebug" | ||
gem "rack-flash3", "~> 1.0" | ||
gem "rack-test", "~> 1.1" | ||
gem "rake", "~> 12.3", ">= 12.3.3" | ||
gem "redcarpet", "~> 3.4" | ||
gem "rspec", "~> 3.0" | ||
gem "rubocop", "~> 1.8" | ||
gem "rubocop-rspec", "~> 2.1" | ||
gem "yard", "~> 0.9", ">= 0.9.20" | ||
# TODO: Move to gemspec when hanami-view 2.0 is available | ||
gem 'hanami-view', github: 'hanami/view', tag: 'v2.1.0.beta2' | ||
gem "hanami-view", github: "hanami/view", tag: "v2.1.0.beta2" | ||
end | ||
|
||
group :test do | ||
gem 'simplecov', require: false | ||
gem "simplecov", require: false | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'bundler/gem_tasks' | ||
require 'rspec/core/rake_task' | ||
require 'rubocop/rake_task' | ||
require "bundler/gem_tasks" | ||
require "rspec/core/rake_task" | ||
require "rubocop/rake_task" | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
RuboCop::RakeTask.new | ||
|
||
desc 'Run code quality checks' | ||
desc "Run code quality checks" | ||
task lint: %i[rubocop] | ||
|
||
task default: %i[lint spec] |
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'web_pipe/pipe' | ||
require "web_pipe/pipe" | ||
|
||
module WebPipe | ||
module DSL | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'web_pipe' | ||
require "web_pipe" | ||
|
||
# :nodoc: | ||
module WebPipe | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'web_pipe' | ||
require "web_pipe" | ||
|
||
WebPipe.load_extensions(:params) | ||
|
||
|
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
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
Oops, something went wrong.