Skip to content

Commit

Permalink
Fix references to old username RobertBorghese
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeRanDev committed Sep 26, 2023
1 parent e6b2005 commit 6ed03f3
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_newproject.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: haxe -version

- name: Install Reflaxe
run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git
run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git

- name: Test newproject
working-directory: newproject
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: haxe -version

- name: Install Reflaxe
run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git
run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git

- name: Test DevEnv.hxml
working-directory: newproject
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: haxe -version

- name: Install Reflaxe
run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git
run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git

- name: Make New Folder
run: mkdir _Temp
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://i.imgur.com/oZkCZ2C.png" alt="I made a reflaxe logo thingy look at it LOOK AT IT" width="400"/>

[![Test Workflow](https://github.com/RobertBorghese/reflaxe/actions/workflows/test.yml/badge.svg)](https://github.com/RobertBorghese/reflaxe/actions)
[![Test Workflow](actions/workflows/test.yml/badge.svg)](https://github.com/SomeRanDev/reflaxe/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
<a href="https://discord.com/channels/162395145352904705/1052688097592225904"><img src="https://discordapp.com/api/guilds/162395145352904705/widget.png?style=shield" alt="Reflaxe Thread"/></a>

Expand All @@ -17,16 +17,16 @@ All you need to worry about is programming the conversion from Haxe's typed AST

| Topic | Description |
| --- | --- |
| [Automatic Installation](https://github.com/RobertBorghese/reflaxe#automatic-installation) | How to generate a Reflaxe project using the "new" command. |
| [Manual Installation](https://github.com/RobertBorghese/reflaxe#manual-installation) | How to install into your library manually. |
| [Building](https://github.com/RobertBorghese/reflaxe#building) | How to build for library for submission. |
| [Reflaxe Properties](https://github.com/RobertBorghese/reflaxe#reflaxe-properties) | How to configure unique properties for your Reflaxe project. |
| [Compiler Code Sample](https://github.com/RobertBorghese/reflaxe/#compiler-code-sample) | How to code the compiler. |
| [CompilerInit Code Sample](https://github.com/RobertBorghese/reflaxe/#compiler-init-code-sample) | How to code the init macro call. |
| [extraParams.hxml Sample](https://github.com/RobertBorghese/reflaxe/#extraparamshxml-sample) | How to configure your library. |
| [compile.hxml Sample](https://github.com/RobertBorghese/reflaxe/#compilerhxml-sample) | How to use your library on other Haxe projects. |
| [BaseCompiler Functions](https://github.com/RobertBorghese/reflaxe/#basecompiler-functions) | The functions used to configure your compiler's behavior and code output. |
| [BaseCompiler Options](https://github.com/RobertBorghese/reflaxe/#basecompiler-options) | Various options passed to Reflaxe for controlling your compiler's input/output. |
| [Automatic Installation](#automatic-installation) | How to generate a Reflaxe project using the "new" command. |
| [Manual Installation](#manual-installation) | How to install into your library manually. |
| [Building](#building) | How to build for library for submission. |
| [Reflaxe Properties](#reflaxe-properties) | How to configure unique properties for your Reflaxe project. |
| [Compiler Code Sample](/#compiler-code-sample) | How to code the compiler. |
| [CompilerInit Code Sample](/#compiler-init-code-sample) | How to code the init macro call. |
| [extraParams.hxml Sample](/#extraparamshxml-sample) | How to configure your library. |
| [compile.hxml Sample](/#compilerhxml-sample) | How to use your library on other Haxe projects. |
| [BaseCompiler Functions](/#basecompiler-functions) | The functions used to configure your compiler's behavior and code output. |
| [BaseCompiler Options](/#basecompiler-options) | Various options passed to Reflaxe for controlling your compiler's input/output. |

&nbsp;
&nbsp;
Expand All @@ -41,7 +41,7 @@ First install Reflaxe using one of the commands below:
haxelib install reflaxe
# install nightly (recommended!)
haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git
haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git
```

Then run the following command to generate a new Reflaxe project:
Expand All @@ -62,7 +62,7 @@ haxelib run reflaxe test
## Manual Installation
| # | What to do | What to write |
| - | ------ | ------ |
| 1 | Install via haxelib git. | <pre>haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git</pre> |
| 1 | Install via haxelib git. | <pre>haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git</pre> |
| 2 | Add the lib to your `.hxml` file or compile command. | <pre lang="hxml">-lib reflaxe</pre> |
| 3 | Extend your compiler class from `BaseCompiler`. | <pre lang="haxe">class MyLangCompiler extends reflaxe.BaseCompiler</pre> |

Expand Down
2 changes: 1 addition & 1 deletion documentation/GenSite.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
haxelib run dox -i . --title Reflaxe -D description "The ultimate framework for creating your own Haxe targets!" --toplevel-package reflaxe -D textColor "0x3d3d3d" -D source-path "https://github.com/RobertBorghese/reflaxe/tree/main/src/"
haxelib run dox -i . --title Reflaxe -D description "The ultimate framework for creating your own Haxe targets!" --toplevel-package reflaxe -D textColor "0x3d3d3d" -D source-path "https://github.com/SomeRanDev/reflaxe/tree/main/src/"
:: -theme "./reflaxe-theme"
6 changes: 3 additions & 3 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "reflaxe",
"version": "3.0.0",
"description": "A framework for creating Haxe language compilation targets using macros.",
"url": "https://github.com/RobertBorghese/reflaxe",
"url": "https://github.com/SomeRanDev/reflaxe",
"license": "MIT",
"tags": [
"macro",
Expand All @@ -14,6 +14,6 @@
"extension"
],
"classPath": "src/",
"releasenote": "17 new features + bug fixes. https://github.com/RobertBorghese/reflaxe/releases/tag/v2.0.0",
"contributors": ["RobertBorghese"]
"releasenote": "17 new features + bug fixes. https://github.com/SomeRanDev/reflaxe/releases/tag/v2.0.0",
"contributors": ["SomeRanDev"]
}
2 changes: 1 addition & 1 deletion newproject/haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "http://example.com",
"tags": [],
"dependencies": {
"reflaxe": "git:https://github.com/RobertBorghese/reflaxe"
"reflaxe": "git:https://github.com/SomeRanDev/reflaxe"
},
"classPath": "src/",
"releasenote": "Initial release.",
Expand Down

0 comments on commit 6ed03f3

Please sign in to comment.