-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v0.1.0' into main
- Loading branch information
Showing
18 changed files
with
439 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
language = "ruby" | ||
run = "bundle exec rake" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog][Keep a Changelog] and this project adheres to [Semantic Versioning][Semantic Versioning]. | ||
|
||
## [Unreleased] | ||
|
||
--- | ||
|
||
## [Released] | ||
|
||
--- | ||
|
||
<!-- Links --> | ||
[Keep a Changelog]: https://keepachangelog.com/ | ||
[Semantic Versioning]: https://semver.org/ | ||
|
||
<!-- Versions --> | ||
[Unreleased]: https://github.com/janlindblom/ruby-replitdb/compare/v1.0.0...HEAD | ||
[Released]: https://github.com/janlindblom/ruby-replitdb/releases | ||
[0.0.2]: https://github.com/janlindblom/ruby-replitdb/compare/v0.0.1..v0.0.2 | ||
[0.0.1]: https://github.com/janlindblom/ruby-replitdb/releases/v0.0.1 |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
replitdb (0.0.1) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
coderay (1.1.3) | ||
diff-lcs (1.4.4) | ||
method_source (1.0.0) | ||
parallel (1.20.1) | ||
parser (3.0.1.0) | ||
ast (~> 2.4.1) | ||
pry (0.14.1) | ||
coderay (~> 1.1) | ||
method_source (~> 1.0) | ||
rainbow (3.0.0) | ||
rake (13.0.3) | ||
regexp_parser (2.1.1) | ||
rexml (3.2.5) | ||
rspec (3.10.0) | ||
rspec-core (~> 3.10.0) | ||
rspec-expectations (~> 3.10.0) | ||
rspec-mocks (~> 3.10.0) | ||
rspec-core (3.10.1) | ||
rspec-support (~> 3.10.0) | ||
rspec-expectations (3.10.1) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-mocks (3.10.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-support (3.10.2) | ||
rubocop (1.13.0) | ||
parallel (~> 1.10) | ||
parser (>= 3.0.0.0) | ||
rainbow (>= 2.2.2, < 4.0) | ||
regexp_parser (>= 1.8, < 3.0) | ||
rexml | ||
rubocop-ast (>= 1.2.0, < 2.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 1.4.0, < 3.0) | ||
rubocop-ast (1.4.1) | ||
parser (>= 2.7.1.5) | ||
rubocop-rake (0.5.1) | ||
rubocop | ||
rubocop-rspec (2.3.0) | ||
rubocop (~> 1.0) | ||
rubocop-ast (>= 1.1.0) | ||
ruby-progressbar (1.11.0) | ||
unicode-display_width (2.0.0) | ||
yard (0.9.26) | ||
|
||
PLATFORMS | ||
x64-mingw32 | ||
|
||
DEPENDENCIES | ||
pry (~> 0.14) | ||
rake (~> 13.0) | ||
replitdb! | ||
rspec (~> 3.10) | ||
rubocop (~> 1.7) | ||
rubocop-rake (~> 0.5) | ||
rubocop-rspec (~> 2.3) | ||
yard (~> 0.9) | ||
|
||
BUNDLED WITH | ||
2.2.5 |
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,8 +1,21 @@ | ||
# frozen_string_literal: true | ||
|
||
require "bundler/gem_tasks" | ||
require "rubocop/rake_task" | ||
|
||
RuboCop::RakeTask.new | ||
begin | ||
require "rubocop/rake_task" | ||
require "yard" | ||
require "rspec/core/rake_task" | ||
|
||
task default: :rubocop | ||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
RuboCop::RakeTask.new | ||
|
||
YARD::Rake::YardocTask.new do |t| | ||
t.files = ["lib/**/*.rb", "spec/**/*.rb"] | ||
t.stats_options = ["--list-undoc"] | ||
end | ||
|
||
task default: :rubocop | ||
rescue LoadError | ||
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "replit/database" | ||
|
||
# | ||
# The Replit module. | ||
# | ||
# @author Jan Lindblom <[email protected]> | ||
# @version 0.1.0 | ||
# | ||
module Replit | ||
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "database/client" | ||
|
||
module Replit | ||
# | ||
# Replit Database module. | ||
# | ||
# @author Jan Lindblom <[email protected]> | ||
# @version 0.1.0 | ||
# | ||
module Database | ||
# | ||
# Thrown if there is a syntax error. | ||
# | ||
class SyntaxError < StandardError; end | ||
|
||
# | ||
# Thrown if there is a configuration error. | ||
# | ||
class ConfigurationError < StandardError; end | ||
end | ||
end |
Oops, something went wrong.