Skip to content
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ bin/
*~
*.dat
*.dep

# Swift Package Manager
.build/
.swiftpm/
15 changes: 15 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// swift-tools-version:5.3

import PackageDescription

let projectName = "bitsyspec"

let package = Package(
name: projectName,
targets: [
.target(
name: projectName,
path: projectName
),
]
)
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,22 @@ implementation, even enabling a test driven approach if desired.

## Requirements

This version of BitsySpec has been tested with:
This version of BitsySpec has been tested with

* OS X/macOS 10.14 (Mojave) or later
* Xcode 11.3
* Swift 5.0
* macOS 12.3 (Monterey) and Ubuntu 20.04 LTS
* Xcode 13.3
* Swift 5.6

Linux support is currently limited by
[Swift Foundation](https://github.com/apple/swift-corelibs-foundation) but
should come eventually.
although basically only a Swift toolchain is required to build the project. Thus,
it may also run perfectly fine on Windows.

Swift is an implementation detail of BitsySpec. Your compiler or interpreter
can be in virtually any language.
can be implemented in virtually any language.

## Installation

To 'install' BitsySpec, simply clone and build the repository. You must have
[Xcode](https://itunes.apple.com/us/app/xcode/id497799835?mt=12)
and the `xcodebuild` utility installed.
To 'install' BitsySpec, simply clone and build the repository. You must have the
[Swift compiler](https://swift.org/download/#releases) available in your `PATH`:

```bash
git clone https://github.com/apbendi/bitsyspec.git
Expand Down
265 changes: 0 additions & 265 deletions bitsyspec.xcodeproj/project.pbxproj

This file was deleted.

This file was deleted.

This file was deleted.

Loading