Skip to content

Commit 5292e10

Browse files
committed
1 parent 457c722 commit 5292e10

22 files changed

+339
-383
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ coverage/
33
.coveralls.yml
44
.bundle
55
Gemfile.lock
6+
target/
7+
Cargo.lock

.rspec

-2
This file was deleted.

.rubocop.yml

-2
This file was deleted.

Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "githubchart"
3+
version = "0.1.0"
4+
authors = ["Les Aker <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]
8+
serde = { version = "1.0", features = ["derive"] }
9+
serde_json = "1.0"
10+
svg = "0.8"
11+
chrono = "0.4"

Gemfile

-3
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GithubChart
22
============
33

4-
[![Gem Version](https://img.shields.io/gem/v/githubchart.svg)](https://rubygems.org/gems/githubchart)
4+
[![Crate Version](https://img.shields.io/crates/v/githubchart.svg)](https://crates.io/crates/githubchart)
55
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/akerl/githubchart/build.yml?branch=main)](https://github.com/akerl/githubchart/actions)
66
[![MIT Licensed](https://img.shields.io/badge/license-MIT-green.svg)](https://tldrlegal.com/license/mit-license)
77

@@ -27,7 +27,7 @@ A hosted service for loading these SVGs was made by [2016rshah](https://github.c
2727

2828
## Installation
2929

30-
gem install githubchart
30+
cargo install githubchart
3131

3232
## License
3333

Rakefile

-14
This file was deleted.

examples/chart.svg

-6
This file was deleted.

examples/other_user.svg

-6
This file was deleted.

githubchart.gemspec

-24
This file was deleted.

lib/githubchart.rb

-113
This file was deleted.

lib/githubchart/svg.rb

-112
This file was deleted.

lib/githubchart/version.rb

-5
This file was deleted.

spec/examples/input.json

-1
This file was deleted.

spec/githubchart/svg_spec.rb

-26
This file was deleted.

0 commit comments

Comments
 (0)