Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drnic/things
Dummy Ruby app with a Thorfile
https://github.com/drnic/things
Last synced: 24 days ago
JSON representation
Dummy Ruby app with a Thorfile
- Host: GitHub
- URL: https://github.com/drnic/things
- Owner: drnic
- Created: 2012-06-07T15:13:00.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-07T15:22:06.000Z (over 12 years ago)
- Last Synced: 2024-10-16T12:34:16.335Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dummy Ruby app that has a Thorfile
This project represents an example app where you have identified a pattern that you want all your developer friends to adhere to.
In this example app there is pattern we want to be maintained. There are things that have `lib/thing.rb` and `spec/thing_spec.rb`:
```
\
lib
|\
| foo.rb
spec
\
foo_spec.rb
```To create new things:
```
$ thor :thing bigthing
exist
create lib/bigthing.rb
create spec/bigthing_spec.rb
```