Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New commit #21

Merged
merged 5 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
24 changes: 24 additions & 0 deletions .github/workflows/ ContinuousIntegration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install build essentials
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Build project
run: make -C code
- name: Run checks
run: make -C code check
- name: Run distcheck
run: make -C code distcheck


Binary file modified .vs/.DS_Store
Binary file not shown.
Binary file modified .vs/RuanScript/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/RuanScript/v17/Browse.VC.db
Binary file not shown.
Binary file modified .vs/RuanScript/v17/Browse.VC.db-wal
Binary file not shown.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
32 changes: 0 additions & 32 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

29 changes: 0 additions & 29 deletions .vscode/tasks.json

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Ruan Simo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
59 changes: 55 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,55 @@
RuanScript
--

RuanScript is a programming language designed for high school, calculus, and basic college/university level math, built after JavaScript.
# RuanScript

**RuanScript** is an innovative programming language inspired by JavaScript, specifically crafted for high school, calculus, and introductory college/university level mathematics.

## Key Features

- **User-Friendly Syntax**: Simplified syntax based on JavaScript, making it accessible for beginners.
- **Educational Focus**: Ideal for learning and teaching fundamental math concepts.
- **Versatile Application**: Suitable for a variety of mathematical computations and problem-solving scenarios.

## Continuous Integration

This project utilizes GitHub Actions for seamless continuous integration, ensuring code quality and reliability through automated builds and tests.

## Getting Started

1. **Clone the Repository**:
```sh
git clone https://github.com/Ruun/RuanScript.git
cd ruanscript
```

2. **Build the Project**:
```sh
make
```

3. **Run Tests**:
```sh
make check
```

## Contributing

We welcome contributions from the community. Please follow these steps to contribute:

1. Fork the repository.
2. Create a new branch: `git checkout -b feature-branch-name`
3. Commit your changes: `git commit -m 'Add some feature'`
4. Push to the branch: `git push origin feature-branch-name`
5. Open a pull request.

## Security Policy

For information on reporting security vulnerabilities, please see our [Security Policy](./SECURITY.md).


## License

RuanScript is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information..

## Connect with Us

For more information or to get involved, visit our [GitHub repository](https://github.com/Ruun).

39 changes: 39 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Security Policy

## Supported Versions

We release patches for security vulnerabilities in the following versions:

| Version | Supported |
| ------- | ------------------ |
| 1.x | :white_check_mark: |
| 0.x | :x: |

## Reporting a Vulnerability

If you discover a security vulnerability, please follow the steps below:

1. **Do Not Open an Issue**: Security issues should not be discussed in public GitHub issues. Instead, send a private email to the project maintainers.

2. **Contact Information**:
- Email: [[email protected]](mailto:[email protected])

3. **Details to Include**:
- Description of the vulnerability.
- Steps to reproduce the vulnerability.
- Possible impacts of the vulnerability.
- Any potential fixes or mitigations you may have.

4. **Expected Timeline**:
- We will acknowledge receipt of your report within 48 hours.
- We will provide a detailed response within 7 days, including our assessment of the issue, a mitigation plan, and an estimated timeline for a fix.

## Security Updates

We will communicate all security updates and vulnerabilities through:

- GitHub Releases
- [Security Advisories](https://github.com/Ruun/ruanscript/security/advisories)

Thank you for helping us keep RuanScript secure for everyone.

18 changes: 16 additions & 2 deletions code/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Compiler
CC = gcc

Expand All @@ -25,9 +24,24 @@ $(EXEC): $(OBJS)
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@

# Check target to ensure the project builds correctly
check: all
@echo "Checking if the project compiles without errors..."

# Dist target to simulate creating a distribution package (for example purposes)
dist:
@echo "Creating distribution package..."
# Add commands to create a distribution package here

# Distcheck target to run dist and check targets
distcheck: dist check
@echo "Running distcheck..."
# Add additional distribution checks here

# Clean up the build
clean:
rm -f $(OBJS) $(EXEC)

# Phony targets
.PHONY: all clean
.PHONY: all clean check dist distcheck