Skip to content

Commit

Permalink
Replace framework with suite in URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
eupn committed Sep 14, 2020
1 parent 0138100 commit d035b55
Show file tree
Hide file tree
Showing 18 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://truffleframework.com/img/truffle-logo-dark.svg" width="200">
<img src="https://trufflesuite.com/img/truffle-logo-dark.svg" width="200">

[![npm](https://img.shields.io/npm/v/truffle.svg)](https://www.npmjs.com/package/truffle)
[![npm](https://img.shields.io/npm/dm/truffle.svg)](https://www.npmjs.com/package/truffle)
Expand Down Expand Up @@ -40,15 +40,15 @@ $ truffle init

From there, you can run `truffle compile`, `truffle migrate` and `truffle test` to compile your contracts, deploy those contracts to the network, and run their associated unit tests.

Truffle comes bundled with a local development blockchain server that launches automatically when you invoke the commands above. If you'd like to [configure a more advanced development environment](https://truffleframework.com/docs/advanced/configuration) we recommend you install the blockchain server separately by running `npm install -g ganache-cli` at the command line.
Truffle comes bundled with a local development blockchain server that launches automatically when you invoke the commands above. If you'd like to [configure a more advanced development environment](https://trufflesuite.com/docs/advanced/configuration) we recommend you install the blockchain server separately by running `npm install -g ganache-cli` at the command line.

+ [ganache-cli](https://github.com/trufflesuite/ganache-cli): a command-line version of Truffle's blockchain server.
+ [ganache](https://truffleframework.com/ganache/): A GUI for the server that displays your transaction history and chain state.
+ [ganache](https://trufflesuite.com/ganache/): A GUI for the server that displays your transaction history and chain state.


### Documentation

Please see the [Official Truffle Documentation](https://truffleframework.com/docs/) for guides, tips, and examples.
Please see the [Official Truffle Documentation](https://trufflesuite.com/docs/) for guides, tips, and examples.

### Development

Expand Down
2 changes: 1 addition & 1 deletion packages/box/test/sources/mock-local-box/truffle-box.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"docs_url": "http://truffleframework.com/docs",
"docs_url": "http://trufflesuite.com/docs",
"ignore": [
"README.md",
".gitignore"
Expand Down
2 changes: 1 addition & 1 deletion packages/compile-solidity/profiler/loadParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function makeParseImports(parser) {
const contractSolcVer = contractSolcPragma[0];
const configSolcVer = semver.valid(solc.version());
err.message = err.message.concat(
`\n\nError: Truffle is currently using solc ${configSolcVer}, but one or more of your contracts specify "${contractSolcVer}".\nPlease update your truffle config or pragma statement(s).\n(See https://truffleframework.com/docs/truffle/reference/configuration#compiler-configuration for information on\nconfiguring Truffle to use a specific solc compiler version.)\n`
`\n\nError: Truffle is currently using solc ${configSolcVer}, but one or more of your contracts specify "${contractSolcVer}".\nPlease update your truffle config or pragma statement(s).\n(See https://trufflesuite.com/docs/truffle/reference/configuration#compiler-configuration for information on\nconfiguring Truffle to use a specific solc compiler version.)\n`
);
} else {
err.message = `Error parsing ${currentFile}: ${err.message}`;
Expand Down
2 changes: 1 addition & 1 deletion packages/compile-solidity/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function detectErrors({
OS.EOL,
`Please update your truffle config or pragma statement(s).`,
OS.EOL,
`(See https://truffleframework.com/docs/truffle/reference/configuration#compiler-configuration `,
`(See https://trufflesuite.com/docs/truffle/reference/configuration#compiler-configuration `,
`for information on`,
OS.EOL,
`configuring Truffle to use a specific solc compiler version.)`
Expand Down
4 changes: 2 additions & 2 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ $ truffle init

From there, you can run `truffle compile`, `truffle migrate` and `truffle test` to compile your contracts, deploy those contracts to the network, and run their associated unit tests.

See [the documentation](http://truffleframework.com/docs/) for more details.
See [the documentation](http://trufflesuite.com/docs/) for more details.

### Documentation

Please see the [Official Truffle Documentation](http://truffleframework.com/docs/) for guides, tips, and examples.
Please see the [Official Truffle Documentation](http://trufflesuite.com/docs/) for guides, tips, and examples.

### Contributing

Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class Command {
OS.EOL +
"Usage: truffle <command> [options]"
)
.epilog("See more at http://truffleframework.com/docs")
.epilog("See more at http://trufflesuite.com/docs")
.showHelp();
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/commands/create/templates/Test.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "truffle/Assert.sol";

contract Test {
// Create functions that begin with "test" to signify different test functions.
// More documentation at http://truffleframework.com/docs/getting_started/solidity-tests
// More documentation at http://trufflesuite.com/docs/getting_started/solidity-tests

function testIsTrue() {
Assert.isTrue(true, "Should be true!");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* More information about configuration can be found at:
*
* truffleframework.com/docs/advanced/configuration
* trufflesuite.com/docs/advanced/configuration
*
* To deploy via Infura you'll need a wallet provider (like @truffle/hdwallet-provider)
* to sign your transactions before they're sent to a remote public node. Infura accounts
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const Package = {
"following link for an example configuration:" +
OS.EOL +
OS.EOL +
" http://truffleframework.com/tutorials/using-infura-custom-provider" +
" http://trufflesuite.com/tutorials/using-infura-custom-provider" +
OS.EOL;
if (callbackPassed) {
callback(new TruffleError(message));
Expand Down
2 changes: 1 addition & 1 deletion packages/decoder/test/current/truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* More information about configuration can be found at:
*
* truffleframework.com/docs/advanced/configuration
* trufflesuite.com/docs/advanced/configuration
*
* To deploy via Infura you'll need a wallet provider (like @truffle/hdwallet-provider)
* to sign your transactions before they're sent to a remote public node. Infura API
Expand Down
2 changes: 1 addition & 1 deletion packages/decoder/test/legacy/truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* More information about configuration can be found at:
*
* truffleframework.com/docs/advanced/configuration
* trufflesuite.com/docs/advanced/configuration
*
* To deploy via Infura you'll need a wallet provider (like @truffle/hdwallet-provider)
* to sign your transactions before they're sent to a remote public node. Infura API
Expand Down
2 changes: 1 addition & 1 deletion packages/deployer/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @truffle/deployer
Light deployment module for deploying Ethereum contracts

This package is in the process of being moved to its own module (here). For documentation, see the `deployer` section within the [Truffle migration documentation](http://truffleframework.com/docs/getting_started/migrations).
This package is in the process of being moved to its own module (here). For documentation, see the `deployer` section within the [Truffle migration documentation](http://trufflesuite.com/docs/getting_started/migrations).

# Testing

Expand Down
8 changes: 4 additions & 4 deletions packages/truffle/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://truffleframework.com/img/truffle-logo-dark.svg" width="200">
<img src="https://trufflesuite.com/img/truffle-logo-dark.svg" width="200">

[![npm](https://img.shields.io/npm/v/truffle.svg)]()
[![npm](https://img.shields.io/npm/dm/truffle.svg)]()
Expand Down Expand Up @@ -34,15 +34,15 @@ $ truffle init

From there, you can run `truffle compile`, `truffle migrate` and `truffle test` to compile your contracts, deploy those contracts to the network, and run their associated unit tests.

Truffle comes bundled with a local development blockchain server that launches automatically when you invoke the commands above. If you'd like to [configure a more advanced development environment](http://truffleframework.com/docs/advanced/configuration) we recommend you install the blockchain server separately by running `npm install -g ganache-cli` at the command line.
Truffle comes bundled with a local development blockchain server that launches automatically when you invoke the commands above. If you'd like to [configure a more advanced development environment](http://trufflesuite.com/docs/advanced/configuration) we recommend you install the blockchain server separately by running `npm install -g ganache-cli` at the command line.

+ [ganache-cli](https://github.com/trufflesuite/ganache-cli): a command-line version of Truffle's blockchain server.
+ [ganache](http://truffleframework.com/ganache/): A GUI for the server that displays your transaction history and chain state.
+ [ganache](http://trufflesuite.com/ganache/): A GUI for the server that displays your transaction history and chain state.


### Documentation

Please see the [Official Truffle Documentation](http://truffleframework.com/docs/) for guides, tips, and examples.
Please see the [Official Truffle Documentation](http://trufflesuite.com/docs/) for guides, tips, and examples.

### Contributing

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// See <http://trufflesuite.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// See <http://trufflesuite.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// See <http://trufflesuite.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// See <http://trufflesuite.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// See <http://trufflesuite.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
Expand Down

0 comments on commit d035b55

Please sign in to comment.