https://github.com/toyama0919/arison
https://github.com/toyama0919/arison
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/toyama0919/arison
- Owner: toyama0919
- License: mit
- Created: 2017-02-08T08:33:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-12T06:26:49.000Z (over 4 years ago)
- Last Synced: 2024-04-26T05:44:32.775Z (about 1 year ago)
- Language: Ruby
- Size: 25.4 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# arison [](http://travis-ci.org/toyama0919/arison)
A tool that predicts schema from data and easily populates the database.
## Examples Settings
For example, set the following.
```yaml
mydb:
adapter: sqlite3
database: /app/sqlite/suggest.db
pool: 5
timeout: 5000
```Execute code like below.
```ruby
require 'arison'
Arison.import(
"my_table",
[
{ column1: "test", column2: Time.now.to_i },
{ column1: "test2", column2: Time.now.to_i },
],
profile: "mydb"
)
```Then it looks like
```
sqlite> select * from my_table ;
1|test|1607692573|2020-12-11 22:16:14.123455|2020-12-11 22:16:14.123455
2|test2|1607692573|2020-12-11 22:16:14.123455|2020-12-11 22:16:14.123455
```* Automatically generate table, and also generate column from data.
* created_at and updated_at are also automatically created.## Command Line Interface
```bash
arison -b -p mydb -t my_table --data column1:"test" column2:1
```## Installation
Add this line to your application's Gemfile:
gem 'arison'
And then execute:
$ bundle
Or install it yourself as:
$ gem install arison
## 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](../../pull/new/master)## Information
* [Homepage](https://github.com/toyama0919/arison)
* [Issues](https://github.com/toyama0919/arison/issues)
* [Documentation](http://rubydoc.info/gems/arison/frames)
* [Email](mailto:[email protected])## Copyright
Copyright (c) 2014 Hiroshi Toyama
See [LICENSE.txt](../LICENSE.txt) for details.