-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from lutaml/maxirmx-issue-74-3
- finalized fixes for segfaults in C++ native extension ( using antlr4-native-rb 2.0.0.1 ) (Segfaults in C++ native extension #74) - added native extension sanity checks to CI scripts (Code review #113) - added rubocop run to CI scripts, some of ruby files are fixed to meet desired rubocop criteria (Code review #113) - added verification of pakaged gems in CI scripts (this is critical since development and release procedures use different toolchains) (Code review #113) - cleaned obsolete files - fixed build for x64-mingw-ucrt binary gem (Build x64-mingw-ucrt version to support Windows Ruby 3.1 #103)
- Loading branch information
Showing
62 changed files
with
999 additions
and
212,142 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
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,3 +1,6 @@ | ||
[submodule "ext/express-parser/antlr4-upstream"] | ||
path = ext/express-parser/antlr4-upstream | ||
url = https://github.com/antlr/antlr4 | ||
[submodule "ext/express-grammar"] | ||
path = ext/express-grammar | ||
url = https://github.com/lutaml/express-grammar |
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,17 @@ | ||
inherit_from: | ||
- https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml | ||
|
||
# local repo-specific modifications | ||
# ... | ||
|
||
AllCops: | ||
TargetRubyVersion: 2.4 | ||
TargetRubyVersion: 2.6 | ||
SuggestExtensions: false | ||
Exclude: | ||
- 'vendor/**/*' | ||
- 'expressir.gemspec' | ||
- 'tmp/**/*' | ||
- 'pkg/**/*' | ||
- 'exe/format-test' | ||
- 'lib/expressir/express/**/*' | ||
- 'lib/expressir/model/**/*' | ||
|
||
Layout/LineLength: | ||
Max: 160 |
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,14 +1,17 @@ | ||
require "bundler/gem_tasks" | ||
require "rspec/core/rake_task" | ||
require "rake/extensiontask" | ||
require "rubocop/rake_task" | ||
require "yard" | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => :spec | ||
task default: :spec | ||
|
||
GEMSPEC = Gem::Specification.load("expressir.gemspec") | ||
|
||
RuboCop::RakeTask.new | ||
|
||
Gem::PackageTask.new(GEMSPEC).define | ||
|
||
YARD::Rake::YardocTask.new |
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 |
---|---|---|
|
@@ -9,4 +9,3 @@ require "reeper" | |
# (If you use this, don't forget to add pry to your Gemfile!) | ||
require "pry" | ||
Pry.start | ||
|
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.