Sha256: d1af097a05fed117dd4f80ba8ef2cea703a115327481757ffd51389ea5df6ac4

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

# Mongoid::Bulk::Import

 This gem adds an `bulk_insert` method to mongoid classes for bulk inserting data with validations support.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'mongoid-bulk-import'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install mongoid-bulk-import

## Usage

### Sample a single document

```ruby

class MyModel
  include Mongoid::Document
  field :name
end

MyModel.bulk_insert({ name: "Jack" })
```

### Sample multiple documents

```ruby

class MyModel
  include Mongoid::Document
  field :name
end

MyModel.bulk_insert([{ name: "Jack" }, { name: "Matt" }])
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/mongoid-bulk-import. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

## Code of Conduct

Everyone interacting in the Mongoid::Bulk::Import project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/mongoid-bulk-import/blob/master/CODE_OF_CONDUCT.md).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongoid-bulk-import-0.3.0 README.md
mongoid-bulk-import-0.2.0 README.md