Skip to content

Commit

Permalink
Major Refactor and Cleanup (#15)
Browse files Browse the repository at this point in the history
* Cleanup progress

* Polishing and finishing

* Only run CI on pushes to master

* Remove unused Display impls
  • Loading branch information
LPGhatguy authored Apr 10, 2020
1 parent ba61630 commit aa6f4a4
Show file tree
Hide file tree
Showing 14 changed files with 347 additions and 639 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
pull_request:
push:
branches: ["*"]
branches: ["master"]

jobs:
build:
Expand Down
138 changes: 128 additions & 10 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ repository = "https://github.com/rojo-rbx/run-in-roblox"
license = "MIT"
readme = "README.md"

[lib]
name = "run_in_roblox"
path = "src/lib.rs"

[[bin]]
name = "run-in-roblox"
path = "src/main.rs"

[dependencies]
clap = "2.33.0"
anyhow = "1.0.28"
colored = "1.9.3"
env_logger = "0.7.1"
fs-err = "2.3.0"
futures = "0.1.25"
hyper = "0.12.35"
log = "0.4.8"
rand = "0.7.3"
rbx_binary = "0.5.0"
rbx_dom_weak = "1.10.1"
rbx_xml = "0.11.4"
roblox_install = "0.2.2"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
structopt = "0.3.13"
tempfile = "3.1.0"
thiserror = "1.0.14"
23 changes: 4 additions & 19 deletions demo/default.project.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
{
"name": "run-in-roblox demo",
"tree": {
"$className": "DataModel",
"ReplicatedStorage": {
"$className": "ReplicatedStorage",
"src": {
"$path": "src"
}
},
"HttpService": {
"$className": "HttpService",
"$properties": {
"HttpEnabled": {
"Type": "Bool",
"Value": true
}
}
}
}
"name": "run-in-roblox demo",
"tree": {
"$className": "DataModel"
}
}
2 changes: 2 additions & 0 deletions demo/hello.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
print("Hello, world!")
error("nah")
1 change: 0 additions & 1 deletion demo/src/main.server.lua

This file was deleted.

51 changes: 0 additions & 51 deletions src/core.rs

This file was deleted.

74 changes: 0 additions & 74 deletions src/lib.rs

This file was deleted.

Loading

0 comments on commit aa6f4a4

Please sign in to comment.