Skip to content

Commit

Permalink
Add scripts and update .gitignore
Browse files Browse the repository at this point in the history
Introduce three new scripts: ameba, authly, and test_server, to enhance functionality for code inspection and testing. The ameba script requires the ameba CLI, supporting extensions to be added as dependencies. Remove the 'bin' directory from .gitignore to include these scripts in version control, ensuring that only necessary files are ignored for a cleaner repository.
  • Loading branch information
eliasjpr committed Oct 10, 2024
1 parent cd9cbe5 commit 55112a8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/docs/
/lib/
/bin/
/.shards/
/.vscode/
*.dwarf
Expand Down
Binary file added bin/ameba
Binary file not shown.
7 changes: 7 additions & 0 deletions bin/ameba.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Require ameba cli which starts the inspection.
require "ameba/cli"

# Require ameba extensions here which are added as project dependencies.
# Example:
#
# require "ameba-performance"
Binary file added bin/authly
Binary file not shown.
Binary file added bin/test_server
Binary file not shown.

0 comments on commit 55112a8

Please sign in to comment.