https://github.com/v2e4lisp/directory-builder
dsl for building dirs
https://github.com/v2e4lisp/directory-builder
Last synced: 9 months ago
JSON representation
dsl for building dirs
- Host: GitHub
- URL: https://github.com/v2e4lisp/directory-builder
- Owner: v2e4lisp
- License: mit
- Created: 2014-01-21T16:08:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-21T16:08:27.000Z (over 12 years ago)
- Last Synced: 2025-03-05T15:24:39.993Z (over 1 year ago)
- Language: Ruby
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DirectoryBuilder
TODO: Write a gem description
## Installation
Add this line to your application's Gemfile:
gem 'DirectoryBuilder'
And then execute:
$ bundle
Or install it yourself as:
$ gem install DirectoryBuilder
## Usage
```ruby
cd("/tmp") {
mkdir("builder") {
touch "test1"
touch("test2") {
"hello world"
}
mkdir("subdir") {
touch "test1"
touch "test2"
}
}
}
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request