Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
change tagline in readme and fix linux travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
vitiral committed Nov 30, 2016
1 parent ada3f9a commit 30f8ab3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rst_app"
version = "0.3.4"
version = "0.3.5"
description = "rst: the requirements tracking tool made for developers"
repository = "https://github.com/vitiral/rst"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build Status](https://travis-ci.org/vitiral/rst.svg?branch=master)](https://travis-ci.org/vitiral/rst)
# rst: requirements as easy as abc
# rst: the requirements tracking tool made for developers
**rst** is a [requirements tracking](https://en.m.wikipedia.org/wiki/Software_requirements_specification)
tool made for developers. It is an acronym for "Requirements, Specifications and Tests".

Expand Down
7 changes: 4 additions & 3 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ mod web {
}

pub fn package_web_ui() {
let cwd = env::current_dir().unwrap();
let web_dir = cwd.join("web-ui");
let repo = Path::new(file!()).parent().unwrap();
println!("repo path: {}", repo.display());
let web_dir = repo.join("web-ui");
build_web_ui(&web_dir);

let dist_dir = web_dir.join("dist");
let tarfile = cwd.join("target").join("web-ui.tar");
let tarfile = repo.join("target").join("web-ui.tar");

fs::remove_file(&tarfile).ok();
let tarfile_fp = fs::File::create(&tarfile).expect("could not create tarfile");
Expand Down
5 changes: 5 additions & 0 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,18 @@ EOF
fi
}

install_elm() {
npm install -g elm webpack
}

main() {
install_c_toolchain
install_rustup
install_standard_crates
configure_cargo

# DONE if you need to install extra stuff add it here
install_elm
}

main

0 comments on commit 30f8ab3

Please sign in to comment.