Skip to content

Commit

Permalink
Update the license and references to the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
rakhimov committed May 24, 2015
1 parent a046009 commit ee5e5b0
Show file tree
Hide file tree
Showing 6 changed files with 629 additions and 294 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8)
# in-source build prevention
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
message(STATUS "Scram requires an out-of-source build.")
message(STATUS "SCRAM requires an out-of-source build.")
message(STATUS "Please remove these files from ${CMAKE_BINARY_DIR} first:")
message(STATUS "CMakeCache.txt")
message(STATUS "CMakeFiles")
Expand Down
905 changes: 620 additions & 285 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions install.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""install.py

An installation script for Scram. This script automates the building and
An installation script for SCRAM. This script automates the building and
installation processes for various purposes like release and debug.
"""

Expand All @@ -24,7 +24,7 @@ def absexpanduser(rel_path):
return os.path.abspath(os.path.expanduser(rel_path))

def install_scram(args):
"""Installs Scram with the specified configurations.
"""Installs SCRAM with the specified configurations.

The process may exit abruptly with an error message.

Expand Down Expand Up @@ -81,7 +81,7 @@ def install_scram(args):
shell=(os.name == "nt"))

def uninstall_scram(args):
"""Uninstalls Scram if it is installed.
"""Uninstalls SCRAM if it is installed.

The process may exit abruptly with an error message.

Expand Down
4 changes: 2 additions & 2 deletions scripts/scram.sh
Expand Up @@ -27,7 +27,7 @@ _scram_parse_options() {
}

########################################
# Parses Scram's Boost program options
# Parses SCRAM's Boost program options
# generated help description to find
# options
#
Expand All @@ -47,7 +47,7 @@ _scram_parse_help() {
}

########################################
# Bash completion function for Scram
# Bash completion function for SCRAM
#
# Globals:
# COMPREPLY
Expand Down
2 changes: 1 addition & 1 deletion tests/input/fta/run_inputs.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""run_inputs.py

Runs Scram with test inputs to examine the output visually.
Runs SCRAM with test inputs to examine the output visually.
"""
from __future__ import print_function

Expand Down
4 changes: 2 additions & 2 deletions tests/test_scram_call.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""test_scram_call.py

A set of tests to invoke command-line Scram with correct and
A set of tests to invoke command-line SCRAM with correct and
incorrect arguments.
"""

Expand All @@ -16,7 +16,7 @@ def test_empty_call():
yield assert_equal, 1, call(cmd)

def test_info_calls():
"""Tests general information calls about Scram."""
"""Tests general information calls about SCRAM."""
# Test help
cmd = ["scram", "--help"]
yield assert_equal, 0, call(cmd)
Expand Down

0 comments on commit ee5e5b0

Please sign in to comment.