repo
string
commit
string
message
string
diff
string
redhotpenguin/Class-Factory
dca64152c6f5d00c999268dbb9a2283b32415f6b
renamed from ../../Factory.pm
diff --git a/lib/Class/Factory.pm b/lib/Class/Factory.pm new file mode 100644 index 0000000..93e5b90 --- /dev/null +++ b/lib/Class/Factory.pm @@ -0,0 +1,147 @@ +package Class::Factory; + +# $Id$ + +use strict; + +$Class::Factory::VERSION = '0.01'; + +sub get_factory_class { + my ( $item, $factory_type ) = @_; + m...
redhotpenguin/Class-Factory
b9baabdd6e1b77e3a1ef02875cc113c031741dec
Initial revision
diff --git a/Changes b/Changes new file mode 100644 index 0000000..db6a14d --- /dev/null +++ b/Changes @@ -0,0 +1,6 @@ +Revision history for Perl extension Class::Factory. + +0.01 Mon Jan 28 08:35:09 2002 + - original version; created by h2xs 1.21 with options + -A -X -n Class::Factory + diff --git a/Factory.pm b/Fac...
espra/espra
ab9deca92ecdc45195890222b559d9b93fd7c514
ai-rules: add AI-assisted development guidelines
diff --git a/.ai-rules.md b/.ai-rules.md new file mode 100644 index 0000000..2c75bc4 --- /dev/null +++ b/.ai-rules.md @@ -0,0 +1,283 @@ +# Guidelines for AI-Assisted Development + +## Overview + +**Project Name:** Espra. + +**Description:** Espra is a new decentralized platform that combines an Onchain +UI Browser with...
espra/espra
b83a03c6c12a0c4e49d146090ff77d521781036b
rustfmt: add config for formatting rust code
diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..5ff3ba5 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,25 @@ +# Rust formatting configuration + +# Use the 2024 edition +edition = "2024" + +# Common settings that align with ecosystem standards +max_width = 100 +hard_tabs = false +tab_spaces = 4...
espra/espra
0e1cca0f8eb93c3fa8e4e0d92c3896e227542bb8
gitignore: expand patterns for macOS, Windows, and AI tools
diff --git a/.gitignore b/.gitignore index 3fa6db4..677d738 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,46 @@ -# System-wide excludes +# macOS .DS_Store +# Windows + +Desktop.ini +Thumbs.db + # IDEs *~ +*.swo +*.swp .idea/ .vscode/ +# AI tools + +.aider.chat.history.md + # Generated files *.ge...
espra/espra
b9aa6288cda82990356520a8b31bfa5c12fb0a9d
Cargo: set up workspace for the monorepo
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cc706fc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,21 @@ +[workspace] +members = ["cmd/*", "lib/*"] +resolver = "3" + +[workspace.package] +authors = ["tav <tav@espra.com>"] +edition = "2024" +exclude = [] +homepage = "https://espra.com" +include =...
espra/espra
5571ccb661ad55e5953102e4e1b7bb13aa69d079
LICENSE: place the repo under Apache 2.0
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7a4a3ea --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, R...
espra/espra
fd1e3f0ba014203503d967857ca06c64c6b1f139
gitignore: add common Rust-related patterns to ignore
diff --git a/.gitignore b/.gitignore index a9e0ff6..3fa6db4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,34 @@ # System-wide excludes .DS_Store # IDEs *~ .idea/ .vscode/ # Generated files *.gen.go *.pb.go coverage.txt # Go *.out cpu.prof mem.prof +# Rust + +debug/ +target/ + +*.pdb...
espra/espra
6a92f8133647ae06ca1493f685a0ff21a9c469b7
pkg/process: add support for generating remove handlers
diff --git a/pkg/process/process.go b/pkg/process/process.go index d1e6866..2af0c2a 100644 --- a/pkg/process/process.go +++ b/pkg/process/process.go @@ -1,212 +1,247 @@ // Public Domain (-) 2010-present, The Espra Core Authors. // See the Espra Core UNLICENSE file for details. // Package process provides utilities...
espra/espra
a3ac093f1af07f192d9390dbfe42ea6ad6ef4650
pkg/process: add support for managing the current process
diff --git a/pkg/process/process.go b/pkg/process/process.go new file mode 100644 index 0000000..d1e6866 --- /dev/null +++ b/pkg/process/process.go @@ -0,0 +1,212 @@ +// Public Domain (-) 2010-present, The Espra Core Authors. +// See the Espra Core UNLICENSE file for details. + +// Package process provides utilities fo...
espra/espra
cb554bd2cbfe8ac964d5b5387c5961b5750cadb9
go: init module
diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..51d236d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module espra.dev + +go 1.21.5
espra/espra
a7a791815ae98a03a4c5a0af806aeb7afdbd0a88
COPYING: add dummy file to satisfy pkg.go.dev
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..9dc90ed --- /dev/null +++ b/COPYING @@ -0,0 +1,127 @@ +PLEASE IGNORE THIS FILE. IT'S ONLY HERE TO SATISFY PKG.GO.DEV. + +FOR THE ACTUAL LICENSE, PLEASE SEE: UNLICENSE.md + +------------------------------------------------------------------------------- ...
espra/espra
b0a7193020210b8a63c4bb0bb37aec675206e356
pkg/osexit: add a mock of os.Exit for testing purposes
diff --git a/pkg/osexit/osexit.go b/pkg/osexit/osexit.go new file mode 100644 index 0000000..6635b80 --- /dev/null +++ b/pkg/osexit/osexit.go @@ -0,0 +1,84 @@ +// Public Domain (-) 2018-present, The Espra Core Authors. +// See the Espra Core UNLICENSE file for details. + +// Package osexit mocks the os.Exit function. +...
espra/espra
aa094bc568e96ed96af7c9dfadf61ed7372965e4
gitignore: add patterns for go and generated files
diff --git a/.gitignore b/.gitignore index f9b4f5b..a9e0ff6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,26 @@ # System-wide excludes .DS_Store # IDEs *~ .idea/ .vscode/ +# Generated files + +*.gen.go +*.pb.go +coverage.txt + +# Go + +*.out +cpu.prof +mem.prof + # Zig zig-cache/ zig-out/
espra/espra
5268824982fb76c191583ee9f7c11c6948d9b1fa
gitignore: add base set of ignored patterns
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f9b4f5b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# System-wide excludes + +.DS_Store + +# IDEs + +*~ +.idea/ +.vscode/ + +# Zig + +zig-cache/ +zig-out/
espra/espra
490299db29945b8e7ed0dcb00429587d9ad514cf
AUTHORS: add the initial set of authors
diff --git a/AUTHORS.eon b/AUTHORS.eon new file mode 100644 index 0000000..5b061b7 --- /dev/null +++ b/AUTHORS.eon @@ -0,0 +1,36 @@ +# Espra Core Authors +# ================== +# +# This is the official list of the Espra Core Authors ("The Authors"). +# +# By adding yourself to this file, you are affirming that all Con...
espra/espra
031464fa3de7017669e12aeae34f2cbac641bd59
UNLICENSE: place the repo into the public domain
diff --git a/UNLICENSE.md b/UNLICENSE.md new file mode 100644 index 0000000..49817b2 --- /dev/null +++ b/UNLICENSE.md @@ -0,0 +1,183 @@ +# Espra Core UNLICENSE + +In the spirit of contributing to the Public Domain, to the full extent possible +under law, the Espra Core Authors ("The Authors"), as specified in the +[`AU...
espra/espra
4964e49615440d82600b12f4506b2bd30009ba25
pkg/runes: benchmark ToBytes against the builtin functions
diff --git a/pkg/runes/runes_test.go b/pkg/runes/runes_test.go index aa00ed6..eaefd6b 100644 --- a/pkg/runes/runes_test.go +++ b/pkg/runes/runes_test.go @@ -1,26 +1,53 @@ // Public Domain (-) 2021-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. package runes import ( "bytes" "testing"...
espra/espra
dc64ae799dc27f8f5d1af07969cbd5a596a60ec0
pkg/runes: add basic functions for dealing with runes
diff --git a/pkg/runes/runes.go b/pkg/runes/runes.go new file mode 100644 index 0000000..3243afa --- /dev/null +++ b/pkg/runes/runes.go @@ -0,0 +1,52 @@ +// Public Domain (-) 2021-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package runes implements simple functions to manipulate Unicod...
espra/espra
116d75154aa8d4ec461f37f201731983c97e4158
pkg/term: make the cursor Pos a non-pointer
diff --git a/pkg/term/term.go b/pkg/term/term.go index 1598532..173f035 100644 --- a/pkg/term/term.go +++ b/pkg/term/term.go @@ -1,708 +1,725 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package term provides support for interacting with terminals. package...
espra/espra
92dbdada90316e841c6dd92237fd80d92675048d
pkg/term: add support for interacting with terminals
diff --git a/pkg/term/term.go b/pkg/term/term.go new file mode 100644 index 0000000..1598532 --- /dev/null +++ b/pkg/term/term.go @@ -0,0 +1,708 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package term provides support for interacting with terminals. +pack...
espra/espra
a17763e13df3c7ac9198833af7f08fa4867344f7
pkg/term/style: add tests for ForceEnable/Disable
diff --git a/pkg/term/style/style_test.go b/pkg/term/style/style_test.go index 24ded38..ddbfaaf 100644 --- a/pkg/term/style/style_test.go +++ b/pkg/term/style/style_test.go @@ -1,95 +1,103 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. package style import ( ...
espra/espra
8552e9e1e399a061406c79cef468f4c134483bf0
pkg/term/style: add support for controlling styled output
diff --git a/pkg/term/style/style.go b/pkg/term/style/style.go index b1aa312..fddbc2c 100644 --- a/pkg/term/style/style.go +++ b/pkg/term/style/style.go @@ -1,328 +1,369 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package style provides support for styling...
espra/espra
5b7a4896bd6b9db7e193382971e9f2e66d7ccf2d
pkg/term: add platform-specific handling for unix systems
diff --git a/pkg/term/term_unix.go b/pkg/term/term_unix.go new file mode 100644 index 0000000..ebc124d --- /dev/null +++ b/pkg/term/term_unix.go @@ -0,0 +1,144 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// +build darwin dragonfly freebsd linux netbsd openbsd...
espra/espra
a811132dd0ded047ce5407aa3877a17476cf4533
pkg/process: add function to crash with stacktraces
diff --git a/pkg/process/process.go b/pkg/process/process.go index f800957..643aa72 100644 --- a/pkg/process/process.go +++ b/pkg/process/process.go @@ -1,213 +1,221 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package process provides utilities for managin...
espra/espra
73ad84531f8b14bcfc7f4572b1ffc077821bb641
pkg/wsl: add support for detecting WSL
diff --git a/pkg/wsl/wsl.go b/pkg/wsl/wsl.go new file mode 100644 index 0000000..1bd8891 --- /dev/null +++ b/pkg/wsl/wsl.go @@ -0,0 +1,10 @@ +// Public Domain (-) 2021-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package wsl provides support for Windows Subsystem for Linux (WSL). +packa...
espra/espra
2c1fb57feeae2a142fe8b7892b3f006e6ac95fb7
pkg/term: add platform-specific handling for bsds and linux
diff --git a/pkg/term/term_bsd.go b/pkg/term/term_bsd.go new file mode 100644 index 0000000..d1c955a --- /dev/null +++ b/pkg/term/term_bsd.go @@ -0,0 +1,18 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// +build darwin dragonfly freebsd netbsd openbsd + +packag...
espra/espra
0268c372147d359903a340483cd35e7633720601
staticcheck: enable all checks
diff --git a/staticcheck.conf b/staticcheck.conf new file mode 100644 index 0000000..51266e6 --- /dev/null +++ b/staticcheck.conf @@ -0,0 +1,4 @@ +# Public Domain (-) 2021-present, The Web4 Authors. +# See the Web4 UNLICENSE file for details. + +checks = ["all"]
espra/espra
db2652c468e21d0f11884bfffa8f7b705874bd55
pkg/term/style: add support for styling terminal output
diff --git a/pkg/term/style/style.go b/pkg/term/style/style.go new file mode 100644 index 0000000..b1aa312 --- /dev/null +++ b/pkg/term/style/style.go @@ -0,0 +1,328 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package style provides support for styling ter...
espra/espra
8090dbf168aad0d6a4717d8c254e1f0edcdf4889
pkg/ident: handle numbers in identifiers + expand initialisms
diff --git a/pkg/ident/ident.go b/pkg/ident/ident.go index 7e368ba..47751bc 100644 --- a/pkg/ident/ident.go +++ b/pkg/ident/ident.go @@ -1,258 +1,258 @@ // Public Domain (-) 2018-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package ident provides support for converting identifiers betw...
espra/espra
f7679cd9e6b2e03c939b34a013f1d5b9afd821ea
pkg/cli: add basic argument parsing and improve validation
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index 75b2926..bbae7d4 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -1,365 +1,543 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package cli provides an easy way to build command line applications. // // I...
espra/espra
e1bd33217c00729a105dcea48e5d36349dfb5225
pkg/cli: improve flag and env name validation
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index da1636e..75b2926 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -1,361 +1,365 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package cli provides an easy way to build command line applications. // // I...
espra/espra
71717c1529b6c99164ca853afa4eadb6e5fce301
pkg/cli: add validation, improve interfaces and mem usage
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index 3bb7c34..da1636e 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -1,326 +1,361 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package cli provides an easy way to build command line applications. +// +// I...
espra/espra
d08002056a6da87f5cff3891ddfbb095c7070d27
pkg/cli: process command structs for flags
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index c8d20dd..3bb7c34 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -1,220 +1,326 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package cli provides an easy way to build command line applications. package ...
espra/espra
036a1c51392623c7d010e2321026ac362d65a1c8
pkg/cli: start reworking optparse into a simpler API
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go new file mode 100644 index 0000000..c8d20dd --- /dev/null +++ b/pkg/cli/cli.go @@ -0,0 +1,220 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package cli provides an easy way to build command line applications. +pac...
espra/espra
48c40820605ae3cf765365ace9861b78a43fe7f6
pkg/process: expose os.Exit as a configurable variable
diff --git a/pkg/process/process.go b/pkg/process/process.go index 84f7609..f800957 100644 --- a/pkg/process/process.go +++ b/pkg/process/process.go @@ -1,210 +1,213 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package process provides utilities for managin...
espra/espra
c89d1615207beee3c3e29b6e14d9582c1283ea4c
pkg/process: add support for reaping child processes
diff --git a/pkg/process/process.go b/pkg/process/process.go index 60aa2f0..84f7609 100644 --- a/pkg/process/process.go +++ b/pkg/process/process.go @@ -1,191 +1,210 @@ // Public Domain (-) 2010-present, The Web4 Authors. // See the Web4 UNLICENSE file for details. // Package process provides utilities for managin...
espra/espra
9d7e07ee03e5de5b95d5c210cf99f756c4a8e3ba
go: update dependencies
diff --git a/go.mod b/go.mod index a8a8188..d0b5ced 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,5 @@ module web4.cc go 1.16 + +require golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..7503251 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +golang.org/x...
espra/espra
6ada209563c7b7de00a1c522c47f72ae951e7918
pkg/process: add support for managing the current process
diff --git a/pkg/process/process.go b/pkg/process/process.go new file mode 100644 index 0000000..60aa2f0 --- /dev/null +++ b/pkg/process/process.go @@ -0,0 +1,191 @@ +// Public Domain (-) 2010-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package process provides utilities for managing t...
espra/espra
68521c926eb0266b4a94df13d3be1b6be666da19
SECURITY: add an explicit policy with 30-day disclosure
diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..be75c02 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,58 @@ +# Security Policy + +We care about security. Please report any security-related issues by emailing +security@espra.com. + +## Disclosure Timeline + +- We will aim to respond to your initi...
espra/espra
0971304a110ae8cd60badcb52404425fcb57c0b2
CODE_OF_CONDUCT: set the tone for the community we want to build
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..4c48e5a --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,99 @@ +# Code of Conduct + +Our community is based on mutual respect, tolerance, and encouragement, and we +are working to help each other live up to these principles. We wa...
espra/espra
5642d8586df895611c276d45809637830f528e8b
pkg/ident: support conversion between naming conventions
diff --git a/pkg/ident/ident.go b/pkg/ident/ident.go new file mode 100644 index 0000000..7e368ba --- /dev/null +++ b/pkg/ident/ident.go @@ -0,0 +1,258 @@ +// Public Domain (-) 2018-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package ident provides support for converting identifiers bet...
espra/espra
ef327dd3a3606d37f8a054e136c68742ccf86ead
pkg/ident: add core set of initialisms
diff --git a/pkg/ident/initialism.go b/pkg/ident/initialism.go new file mode 100644 index 0000000..f2e484b --- /dev/null +++ b/pkg/ident/initialism.go @@ -0,0 +1,141 @@ +// Public Domain (-) 2018-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +package ident + +import ( + "strings" +) + +var m...
espra/espra
a32e1c7c388a660939f11380a3020b45c4c3939e
pkg/osexit: add a mock of os.Exit for testing purposes
diff --git a/pkg/osexit/osexit.go b/pkg/osexit/osexit.go new file mode 100644 index 0000000..3db9acc --- /dev/null +++ b/pkg/osexit/osexit.go @@ -0,0 +1,85 @@ +// Public Domain (-) 2018-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package osexit mocks the os.Exit function. +// +// To us...
espra/espra
9cdd3f207f0f4203d3107f533f6ccdd4fd144a5d
COPYING: add dummy file to satisfy pkg.go.dev
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..9dc90ed --- /dev/null +++ b/COPYING @@ -0,0 +1,127 @@ +PLEASE IGNORE THIS FILE. IT'S ONLY HERE TO SATISFY PKG.GO.DEV. + +FOR THE ACTUAL LICENSE, PLEASE SEE: UNLICENSE.md + +------------------------------------------------------------------------------- ...
espra/espra
9ce68dbd1be1770823d4610cb956843695c0e39c
pkg/checked: add package for detecting integer overflows
diff --git a/pkg/checked/checked.go b/pkg/checked/checked.go new file mode 100644 index 0000000..56210a9 --- /dev/null +++ b/pkg/checked/checked.go @@ -0,0 +1,15 @@ +// Public Domain (-) 2018-present, The Web4 Authors. +// See the Web4 UNLICENSE file for details. + +// Package checked adds support for detecting overflo...
espra/espra
441af215859e9b8d9486df14c11977249e7612a4
website: add base setup for the web4.cc site
diff --git a/website/.gcloudignore b/website/.gcloudignore new file mode 100644 index 0000000..587f76f --- /dev/null +++ b/website/.gcloudignore @@ -0,0 +1,6 @@ +.gcloudignore +.git +.gitignore + +*.out +*.test diff --git a/website/app.yaml b/website/app.yaml new file mode 100644 index 0000000..3d3998d --- /dev/null ++...
espra/espra
d92f7c5ecdd54301dc5f59b961b293aafab5b80d
go: init module
diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a8a8188 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module web4.cc + +go 1.16
espra/espra
dcb0d41294dad7d16e63b4d0cd0e028fe5a03e20
AUTHORS: add the initial set of authors
diff --git a/AUTHORS.eon b/AUTHORS.eon new file mode 100644 index 0000000..ba71f09 --- /dev/null +++ b/AUTHORS.eon @@ -0,0 +1,36 @@ +# Web4 Authors +# ============ +# +# This is the official list of the Web4 Authors ("The Authors"). +# +# By adding yourself to this file, you are affirming that all Contributions that +#...
espra/espra
16ddb470a625fae7a91467b51c908b87686fdc41
UNLICENSE: place the repo into the public domain
diff --git a/UNLICENSE.md b/UNLICENSE.md new file mode 100644 index 0000000..80a69cb --- /dev/null +++ b/UNLICENSE.md @@ -0,0 +1,183 @@ +# Web4 UNLICENSE + +In the spirit of contributing to the Public Domain, to the full extent possible +under law, the Web4 Authors ("The Authors"), as specified in the [`AUTHORS.eon`] +...
espra/espra
3304912a7c1e7682cf75e8da0e86d47808540e40
pkg/big: define the base API for the package
diff --git a/pkg/big/big.go b/pkg/big/big.go new file mode 100644 index 0000000..0a75fc3 --- /dev/null +++ b/pkg/big/big.go @@ -0,0 +1,251 @@ +// Public Domain (-) 2020-present, The Core Authors. +// See the Core UNLICENSE file for details. + +// Package big implements arbitrary-precision decimals. +// +// Unlike other...
espra/espra
c48f190cabc955c09786a4ee3ed00659fa3aa3f0
pkg/xon: define the base API for the package
diff --git a/pkg/xon/xon.go b/pkg/xon/xon.go new file mode 100644 index 0000000..8e6107b --- /dev/null +++ b/pkg/xon/xon.go @@ -0,0 +1,192 @@ +// Public Domain (-) 2020-present, The Core Authors. +// See the Core UNLICENSE file for details. + +// Package xon implements the eXtensible Object Notation (XON) format. +pack...
espra/espra
946aad187969a65a91d0a1db688f1377eb1ea6ae
pkg/ident: add support for converting between case styles
diff --git a/pkg/ident/ident.go b/pkg/ident/ident.go new file mode 100644 index 0000000..2112d93 --- /dev/null +++ b/pkg/ident/ident.go @@ -0,0 +1,257 @@ +// Public Domain (-) 2018-present, The Core Authors. +// See the Core UNLICENSE file for details. + +// Package ident provides support for converting identifiers bet...
espra/espra
eb5a2f5ae2e3c18b460689dd9808f6e8290abde6
cmd/genasm: add state support across vector registers and stack
diff --git a/cmd/genasm/asm/alloc.go b/cmd/genasm/asm/alloc.go new file mode 100644 index 0000000..a2aa58b --- /dev/null +++ b/cmd/genasm/asm/alloc.go @@ -0,0 +1,193 @@ +package asm + +import ( + "fmt" + "runtime" + + "github.com/mmcloughlin/avo/operand" + "github.com/mmcloughlin/avo/reg" +) + +// Alloc maintains state...
espra/espra
5c5fbd67abe46c72abc34981db6663b05c9f1aa5
doc/license: add license from the avo project
diff --git a/doc/license/avo/LICENSE b/doc/license/avo/LICENSE new file mode 100644 index 0000000..c986d80 --- /dev/null +++ b/doc/license/avo/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2018, Michael McLoughlin +All rights reserved. + +Redistribution and use in source and binary forms, with or with...
espra/espra
9c53f6cb3d2c34665e54493acb4005a7088bc8d9
cmd/genasm: implement framework for generating asm files
diff --git a/THIRDPARTY.yaml b/THIRDPARTY.yaml index ed9ebe7..3be78db 100644 --- a/THIRDPARTY.yaml +++ b/THIRDPARTY.yaml @@ -1,23 +1,31 @@ # This metadata file defines the copyright and licensing terms for files within # Core ("The Work") which are based on works authored by third parties. +avo: + sources: + - ...
espra/espra
e71a128e4336100690555b598d59de2668e81ab3
meta: elide types in composite literals
diff --git a/infra/provider/container/container.go b/infra/provider/container/container.go index 0e9eb75..e3d5438 100644 --- a/infra/provider/container/container.go +++ b/infra/provider/container/container.go @@ -1,75 +1,75 @@ // Public Domain (-) 2020-present, The Core Authors. // See the Core UNLICENSE file for det...
espra/espra
e2488d23d6e1be9ff0cc06803f6c916b27e0f604
COPYING: add dummy file to satisfy pkg.go.dev
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..672d6b3 --- /dev/null +++ b/COPYING @@ -0,0 +1,125 @@ +See UNLICENSE.md for the Core Unlicense. It is a superset of CC0. + +------------------------------------------------------------------------------- + +Creative Commons Legal Code + +CC0 1.0 Univers...
espra/espra
032282923b8c05d093be13ed591410899ea9f937
doc/license: add CC0 1.0 legalcode
diff --git a/doc/license/cc0/LEGALCODE b/doc/license/cc0/LEGALCODE new file mode 100644 index 0000000..0e259d4 --- /dev/null +++ b/doc/license/cc0/LEGALCODE @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES....
tomtt/cucumber-skin
7b69ba4089d3b773e224ed67037cd2ab5ba9f826
Fixed specs not running by unshifting dir onto path
diff --git a/bin/cucumber-skin b/bin/cucumber-skin index e6433e1..3ce0c46 100755 --- a/bin/cucumber-skin +++ b/bin/cucumber-skin @@ -1,10 +1,12 @@ #!/usr/bin/env ruby # Add '.rb' to work around a bug in IronRuby's File#dirname _cuke_skin_dir = File.dirname(__FILE__ + '.rb') + '/../lib' -$:.unshift(_cuke_skin_dir) ...
tomtt/cucumber-skin
883874b4811b9311cd802f38978fa42a035ec45a
Simplified cucumber-skin script, functionality put in same place as where cucumber had it
diff --git a/bin/cucumber-skin b/bin/cucumber-skin index a1b3fa9..e6433e1 100755 --- a/bin/cucumber-skin +++ b/bin/cucumber-skin @@ -1,19 +1,10 @@ #!/usr/bin/env ruby +# Add '.rb' to work around a bug in IronRuby's File#dirname -require File.expand_path( - File.join(File.dirname(__FILE__), %w[.. lib cucumber-skin...
tomtt/cucumber-skin
fe5c7e83b22bad6b7e1786c4c3e4268493782b95
First running feature file
diff --git a/features/html_files.feature b/features/html_files.feature new file mode 100644 index 0000000..aa97bb7 --- /dev/null +++ b/features/html_files.feature @@ -0,0 +1,8 @@ +Feature: Html File Formatter + + @tag1 @tag2 + Scenario: Generating files for each tag + When I run cucumber-skin features -o tmp/featu...
tomtt/cucumber-skin
8bf593b38d9a8b3033195b9514e480725ebf3b6b
cucumber-skin script uses it's default formatter if none specified, so now the script can just be run like cucumber
diff --git a/bin/cucumber-skin b/bin/cucumber-skin index b3e4b89..a1b3fa9 100755 --- a/bin/cucumber-skin +++ b/bin/cucumber-skin @@ -1,15 +1,19 @@ #!/usr/bin/env ruby require File.expand_path( File.join(File.dirname(__FILE__), %w[.. lib cucumber-skin])) # Put your code here # cuke_dir = File.dirname(__FI...
tomtt/cucumber-skin
d3b21309779acac8f09e1d0192a5bd3c2f9f24c4
Html files formatter uses results gatherer
diff --git a/lib/cucumber-skin/formatter/html_files.rb b/lib/cucumber-skin/formatter/html_files.rb index 8f9d62f..3d3228e 100644 --- a/lib/cucumber-skin/formatter/html_files.rb +++ b/lib/cucumber-skin/formatter/html_files.rb @@ -1,17 +1,20 @@ require 'cucumber' module CucumberSkin module Formatter class Htm...
tomtt/cucumber-skin
b6c5d34ac87b91d99544f2cb15638e028875bf71
Put gatherer classes in their own module
diff --git a/lib/cucumber-skin/gatherer/feature.rb b/lib/cucumber-skin/gatherer/feature.rb index a6a008b..c42e646 100644 --- a/lib/cucumber-skin/gatherer/feature.rb +++ b/lib/cucumber-skin/gatherer/feature.rb @@ -1,11 +1,13 @@ module CucumberSkin - class Feature - attr_accessor :tags - attr_accessor :scenarios ...
tomtt/cucumber-skin
a82d171d04ea85849f381a0f79d86d959c903161
Some todos added to README
diff --git a/README.txt b/README.txt index 4a1bdbb..c34840e 100644 --- a/README.txt +++ b/README.txt @@ -1,48 +1,53 @@ cucumber-skin by Tom ten Thij http://tomtenthij.co.uk == DESCRIPTION: A cucumber formatter that generates html files to present test results == FEATURES/PROBLEMS: * FIXME (list o...
tomtt/cucumber-skin
615c2d2e522e523bf1d287ff60621a50b2fae6fe
Minimal code to be able to use CucumberSkin::Formatter::HtmlFiles as a formatter using cucumber-skin command (involves a hack specific for local machine for now)
diff --git a/bin/cucumber-skin b/bin/cucumber-skin old mode 100644 new mode 100755 index bd51321..b3e4b89 --- a/bin/cucumber-skin +++ b/bin/cucumber-skin @@ -1,8 +1,15 @@ #!/usr/bin/env ruby require File.expand_path( File.join(File.dirname(__FILE__), %w[.. lib cucumber-skin])) # Put your code here +# cuke...
tomtt/cucumber-skin
bcb0906160274ed65de7818177bd8d99188e96f4
HtmlFiles formatter
diff --git a/lib/cucumber-skin/formatter/html_files.rb b/lib/cucumber-skin/formatter/html_files.rb new file mode 100644 index 0000000..77a9b67 --- /dev/null +++ b/lib/cucumber-skin/formatter/html_files.rb @@ -0,0 +1,7 @@ + +module CucumberSkin + module Formatter + class HtmlFiles + end + end +end diff --git a/s...
tomtt/cucumber-skin
b465a35baf22572b6d027e1584dd201dee654d01
Ignore pkg/ (for now?)
diff --git a/.gitignore b/.gitignore index 7b0cd9d..ba9c631 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store *~ *.swp *.log .project tmp +pkg
tomtt/cucumber-skin
46e5ee188526e94e8617c5927b4cf908ed0efbb9
Changed version to 0.0.1
diff --git a/History.txt b/History.txt index 529b2b0..ee47a23 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== 1.0.0 / 2009-03-25 +== 0.0.1 / 2009-03-25 * 1 major enhancement * Birthday! diff --git a/lib/cucumber-skin.rb b/lib/cucumber-skin.rb index 5a1d0f9..57218f3 100644 --- a/lib/cucumber-skin.rb...
tomtt/cucumber-skin
25d5b70b92429da7f8217be9e2ae6b6500b40f12
Start on results gatherer
diff --git a/lib/cucumber-skin/results_gatherer.rb b/lib/cucumber-skin/results_gatherer.rb new file mode 100644 index 0000000..50a7d18 --- /dev/null +++ b/lib/cucumber-skin/results_gatherer.rb @@ -0,0 +1,6 @@ +require 'cucumber' + +module CucumberSkin + class ResultsGatherer < Cucumber::Ast::Visitor + end +end diff -...
tomtt/cucumber-skin
ef3d23b9cc670297fff53e7b9ab420afeb3a1011
Comment with wild stab at what a step might become
diff --git a/lib/cucumber-skin/step.rb b/lib/cucumber-skin/step.rb index bb3ab56..9a93d93 100644 --- a/lib/cucumber-skin/step.rb +++ b/lib/cucumber-skin/step.rb @@ -1,4 +1,5 @@ module CucumberSkin + # class Step < Struct.new(:keyword, :step_match, :status, :source_indent, :background) class Step end end
tomtt/cucumber-skin
f1656dfdac554c451c485e1fbe1254ba1a82a688
A scenario has steps
diff --git a/lib/cucumber-skin/scenario.rb b/lib/cucumber-skin/scenario.rb index 550f6c2..63f6f3e 100644 --- a/lib/cucumber-skin/scenario.rb +++ b/lib/cucumber-skin/scenario.rb @@ -1,10 +1,11 @@ module CucumberSkin class Scenario attr_accessor :tags + attr_accessor :steps def initialize @tags ...
tomtt/cucumber-skin
8e1deee486575b991a0a5c33d0cf811fa36745a0
Use TagSet for scenario
diff --git a/lib/cucumber-skin/scenario.rb b/lib/cucumber-skin/scenario.rb index ffe1afd..550f6c2 100644 --- a/lib/cucumber-skin/scenario.rb +++ b/lib/cucumber-skin/scenario.rb @@ -1,4 +1,10 @@ module CucumberSkin class Scenario + attr_accessor :tags + + def initialize + @tags = TagSet.new(self) + @...
tomtt/cucumber-skin
c612f9d668f1d7ba1aba00c6a08b770640636630
Extracted TagSet class
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index e24de3a..a6a008b 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,30 +1,11 @@ module CucumberSkin - class FeatureTagSet < Array - # I chose to inherit from an Array in stead of a Set because an array is...
tomtt/cucumber-skin
6e383e5da52b858bcfa64fca37b4cc68700a85f5
A feature tags itself with the tag if a tag is added to it
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index bab40ce..e24de3a 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,30 +1,30 @@ module CucumberSkin class FeatureTagSet < Array # I chose to inherit from an Array in stead of a Set because an array is...
tomtt/cucumber-skin
3f299fcc6db981c9dcf6dccd3afc5b89a006b109
A feature tags itself with the tag if a tag is added to it
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index 1a02ff2..bab40ce 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,25 +1,30 @@ module CucumberSkin - class TagSet < Array + class FeatureTagSet < Array # I chose to inherit from an Array in stead of a...
tomtt/cucumber-skin
e8958110603bc8f2b23cc5afe677deb43c747aac
Maintaining a list of things a tag tagged
diff --git a/lib/cucumber-skin/tag.rb b/lib/cucumber-skin/tag.rb index 5017dbf..0d15130 100644 --- a/lib/cucumber-skin/tag.rb +++ b/lib/cucumber-skin/tag.rb @@ -1,24 +1,33 @@ require 'singleton' module CucumberSkin class Tag @@tags = {} def self.instance(tag) string = tag.to_s @@tags[st...
tomtt/cucumber-skin
2e4f7173cbc856857a9fd4a6396ca58a84cbae52
Tag class ensures there is only one instance of a certain tag
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index 9dea6b6..1a02ff2 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,27 +1,25 @@ module CucumberSkin class TagSet < Array # I chose to inherit from an Array in stead of a Set because an array is #...
tomtt/cucumber-skin
3046b38dec5ca1325c9b5719e8ef999acd29fc18
Files to allow specs to run using the spec command
diff --git a/script/spec b/script/spec new file mode 100755 index 0000000..c54cba1 --- /dev/null +++ b/script/spec @@ -0,0 +1,5 @@ +#!/usr/bin/env ruby +$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib")) +require 'rubygems' +require 'spec' +exit ::Spec::Runner::CommandLine.run...
tomtt/cucumber-skin
326e2ad19471d49c45070bf2f4b2dbacead7a803
Basic ability to add scenarios to features
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index 44ddef9..9dea6b6 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,25 +1,27 @@ module CucumberSkin class TagSet < Array # I chose to inherit from an Array in stead of a Set because an array is #...
tomtt/cucumber-skin
199c01156a0af5c06bde7b3766372dc465cafbe5
Some tested feature and tag methods
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb index 37832ac..44ddef9 100644 --- a/lib/cucumber-skin/feature.rb +++ b/lib/cucumber-skin/feature.rb @@ -1,6 +1,25 @@ -puts 'Required feature' +module CucumberSkin + class TagSet < Array + # I chose to inherit from an Array in stead of a Set be...
tomtt/cucumber-skin
e7110d890ec42f9f44b090e9d19f3741fad7aa5c
Make specs works
diff --git a/lib/cucumber-skin/feature.rb b/lib/cucumber-skin/feature.rb new file mode 100644 index 0000000..37832ac --- /dev/null +++ b/lib/cucumber-skin/feature.rb @@ -0,0 +1,6 @@ +puts 'Required feature' + +module Cucumber + class Feature + end +end diff --git a/spec/cucumber-skin/feature/feature_spec.rb b/spec/cu...
tomtt/cucumber-skin
4aa156304d8d6b3e44b5b9dbfb3c7ba118455a05
Initial mr bones gem structure
diff --git a/.bnsignore b/.bnsignore new file mode 100644 index 0000000..c8a51f2 --- /dev/null +++ b/.bnsignore @@ -0,0 +1,16 @@ +# The list of files that should be ignored by Mr Bones. +# Lines that start with '#' are comments. +# +# A .gitignore file can be used instead by setting it as the ignore +# file in your Rak...
tomtt/cucumber-skin
8aec8f0150f11ce361742bbe9324bb1b08fd84ce
Start of cucumber-skin repos
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b0cd9d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +*~ +*.swp +*.log +.project +tmp
dojo4/ey-cloud-recipes
7b554b8f454aa00ae31678a400db611e3e8c2a79
switching to default mongodb noauth
diff --git a/cookbooks/mongodb/files/default/mongodb-master.conf b/cookbooks/mongodb/files/default/mongodb-master.conf index 1d5c680..1d00c12 100644 --- a/cookbooks/mongodb/files/default/mongodb-master.conf +++ b/cookbooks/mongodb/files/default/mongodb-master.conf @@ -1,12 +1,12 @@ # Mongodb essentials MONGODB_EXEC="...
dojo4/ey-cloud-recipes
1c220fee49684a4492b288f7633ca1f103d13c9c
un-commented out mongodb user creation
diff --git a/cookbooks/mongodb/recipes/default.rb b/cookbooks/mongodb/recipes/default.rb index 9882e51..ba220d9 100644 --- a/cookbooks/mongodb/recipes/default.rb +++ b/cookbooks/mongodb/recipes/default.rb @@ -1,99 +1,99 @@ # # Cookbook Name:: mongodb # Recipe:: default # # NOTE: Be sure to edit files/default/mon...
dojo4/ey-cloud-recipes
93f4522fde98690bc7e0efc486b5a3306a9b0150
commented out mongodb user creation
diff --git a/cookbooks/mongodb/recipes/default.rb b/cookbooks/mongodb/recipes/default.rb index 7b3bbb6..9882e51 100644 --- a/cookbooks/mongodb/recipes/default.rb +++ b/cookbooks/mongodb/recipes/default.rb @@ -1,99 +1,99 @@ # # Cookbook Name:: mongodb # Recipe:: default # # NOTE: Be sure to edit files/default/mon...
dojo4/ey-cloud-recipes
565fd441149b8f654a5c71c82406c6589c373d4d
commented out mongodb user creation
diff --git a/cookbooks/mongodb/recipes/default.rb b/cookbooks/mongodb/recipes/default.rb index f5ce14a..7b3bbb6 100644 --- a/cookbooks/mongodb/recipes/default.rb +++ b/cookbooks/mongodb/recipes/default.rb @@ -1,99 +1,99 @@ # # Cookbook Name:: mongodb # Recipe:: default # # NOTE: Be sure to edit files/default/mon...
dojo4/ey-cloud-recipes
7b6d499bf43b9b74dfaa072df4375b31aad6b175
modified mongo recipe to run on solo node configurationOB
diff --git a/cookbooks/mongodb/recipes/default.rb b/cookbooks/mongodb/recipes/default.rb index 8377a1f..f5ce14a 100644 --- a/cookbooks/mongodb/recipes/default.rb +++ b/cookbooks/mongodb/recipes/default.rb @@ -1,98 +1,99 @@ # # Cookbook Name:: mongodb # Recipe:: default # # NOTE: Be sure to edit files/default/mon...
dojo4/ey-cloud-recipes
d51c8b8c01e52b85995a52668f66ed2c9f125192
modified mongo recipe to run on solo node configuration
diff --git a/cookbooks/mongodb/recipes/default.rb b/cookbooks/mongodb/recipes/default.rb index 6d98c1c..8377a1f 100644 --- a/cookbooks/mongodb/recipes/default.rb +++ b/cookbooks/mongodb/recipes/default.rb @@ -1,98 +1,98 @@ # # Cookbook Name:: mongodb # Recipe:: default # # NOTE: Be sure to edit files/default/mon...
dojo4/ey-cloud-recipes
f40286ce2d66886631f609b70ea8c6ad7c503088
switching mongodb recipe to bratta implementation
diff --git a/cookbooks/mongodb/files/default/mongodb b/cookbooks/mongodb/files/default/mongodb deleted file mode 100644 index 88036e3..0000000 --- a/cookbooks/mongodb/files/default/mongodb +++ /dev/null @@ -1,17 +0,0 @@ -depend() { - use net -} - -start() { - ebegin "Starting mongodb" - /usr/local/mongodb/bin/mongo...
dojo4/ey-cloud-recipes
6f8e445438eb331c5db23a4740da96c39b944edb
initial add of mongodb recipe
diff --git a/cookbooks/main/recipes/default.rb b/cookbooks/main/recipes/default.rb index b0d3b22..48e44ee 100644 --- a/cookbooks/main/recipes/default.rb +++ b/cookbooks/main/recipes/default.rb @@ -1,31 +1,33 @@ execute "testing" do command %Q{ echo "i ran at #{Time.now}" >> /root/cheftime } end -require_...
dojo4/ey-cloud-recipes
caacb2ac9ad2a2fadc1e1840c7c86dd6d357d96c
a bunch of slightly more sane defaults for postgres instances on amazon
diff --git a/cookbooks/postgres/files/default/postgresql.conf b/cookbooks/postgres/files/default/postgresql.conf index 69cc9cc..26efab4 100644 --- a/cookbooks/postgres/files/default/postgresql.conf +++ b/cookbooks/postgres/files/default/postgresql.conf @@ -1,496 +1,500 @@ # ----------------------------- # PostgreSQL ...
dojo4/ey-cloud-recipes
35c74c1ccb11795739ee6ec0a6ff5e47c85cdd8d
more sane defaults and logging for postgres db
diff --git a/cookbooks/postgres/files/default/postgresql.conf b/cookbooks/postgres/files/default/postgresql.conf index 27e463e..69cc9cc 100644 --- a/cookbooks/postgres/files/default/postgresql.conf +++ b/cookbooks/postgres/files/default/postgresql.conf @@ -1,495 +1,496 @@ # ----------------------------- # PostgreSQL ...
dojo4/ey-cloud-recipes
641ebfc3693f34c5dd609370d45ec7a7cfd5d33c
add a pg_hba.conf for network access too
diff --git a/cookbooks/postgres/recipes/default.rb b/cookbooks/postgres/recipes/default.rb index 80fb89f..2d7506f 100644 --- a/cookbooks/postgres/recipes/default.rb +++ b/cookbooks/postgres/recipes/default.rb @@ -1,151 +1,162 @@ require 'pp' # # Cookbook Name:: postgres # Recipe:: default # # if node[:instance_r...
dojo4/ey-cloud-recipes
3f1f5f014b97d3a5202338c076e75223de22b22d
only write keep files if they don't exist already
diff --git a/cookbooks/postgres/recipes/default.rb b/cookbooks/postgres/recipes/default.rb index cc9e980..80fb89f 100644 --- a/cookbooks/postgres/recipes/default.rb +++ b/cookbooks/postgres/recipes/default.rb @@ -1,150 +1,151 @@ require 'pp' # # Cookbook Name:: postgres # Recipe:: default # # if node[:instance_r...
dojo4/ey-cloud-recipes
d82c04dafe7525b66e86eae64e5f1c1b7197a061
add support for running a cluster
diff --git a/cookbooks/main/recipes/default.rb b/cookbooks/main/recipes/default.rb index bc15188..b0d3b22 100644 --- a/cookbooks/main/recipes/default.rb +++ b/cookbooks/main/recipes/default.rb @@ -1,29 +1,31 @@ execute "testing" do command %Q{ echo "i ran at #{Time.now}" >> /root/cheftime } end +require_...
dojo4/ey-cloud-recipes
bf4b64ef94352f3b370db48022eb0d1b5523f982
Bugfix for postgres recipes
diff --git a/cookbooks/postgres/recipes/default.rb b/cookbooks/postgres/recipes/default.rb index 856b29a..690c8da 100644 --- a/cookbooks/postgres/recipes/default.rb +++ b/cookbooks/postgres/recipes/default.rb @@ -1,143 +1,141 @@ require 'pp' # # Cookbook Name:: postgres # Recipe:: default # postgres_root = '/v...
dojo4/ey-cloud-recipes
9f281c518ad752ada5e5085027e6207b0c89373e
More cleanup of postgres recipes
diff --git a/cookbooks/postgres/recipes/default.rb b/cookbooks/postgres/recipes/default.rb index 93dd190..856b29a 100644 --- a/cookbooks/postgres/recipes/default.rb +++ b/cookbooks/postgres/recipes/default.rb @@ -1,142 +1,143 @@ require 'pp' # # Cookbook Name:: postgres # Recipe:: default # postgres_root = '/v...