https://github.com/adjust/dumbo
postgres extension fun
https://github.com/adjust/dumbo
Last synced: about 1 year ago
JSON representation
postgres extension fun
- Host: GitHub
- URL: https://github.com/adjust/dumbo
- Owner: adjust
- License: mit
- Created: 2014-04-03T13:14:22.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-31T08:54:55.000Z (almost 2 years ago)
- Last Synced: 2024-09-17T17:19:45.377Z (almost 2 years ago)
- Language: Ruby
- Size: 135 KB
- Stars: 1
- Watchers: 72
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Dumbo
postgres extension with fun

## Installation
Add this line to your application's Gemfile:
gem 'dumbo'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dumbo
## Getting Started
At the command prompt, create a new extension:
dumbo new myextention
where "myextention" is the extension name.
Change directory to myextention to start hacking:
cd myapp
As a stating point take a look at the sample function in
sql/sample.sql
and the corresponding test file
spec/sample_spec.rb
build the extension and run the specs
rake
if you start working on a new version run
rake dumbo:new_version [level]
where level is new version level (major, minor patch)
when you are done you can create the migration files with
rake dumbo:migrations
## Contributing
1. Fork it ( http://github.com/adeven/dumbo/fork )
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