importeer_plan 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -3
- data/changelog.md +5 -0
- data/lib/importeer_plan.rb +1 -1
- data/lib/importeer_plan/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 465e9faee52dbe6fedf793268612db940124e3b7
|
4
|
+
data.tar.gz: f526162e820ff1cd6b690e9b9c161e5d2ae9ab79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3c083b782bed66dce4688911b082b99f5e3c2ec05eecd6865eefab9ec751c91297b6e79e0f3674751ab7d3d6c6604762d9409edb7b3276a29dbf12d505abc4e
|
7
|
+
data.tar.gz: 2fa4f50ebd007899b8a8fd2c95910b8f9aef2121528c8486ca35c5121023ceccabe1f71e845fd93ad20e6fbc3cb4515ddf9917ff18a85c2692df51d5e86c3481
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ Importeer.new takes two options:
|
|
31
31
|
My applications-classes for processing data from external files inherit from Importeer.
|
32
32
|
|
33
33
|
```ruby
|
34
|
-
class ImporteerSomething < Importeer
|
34
|
+
class ImporteerSomething < ImporteerPlan::Importeer
|
35
35
|
attr_accessor :my_var, :another_var
|
36
36
|
#call importeer("filename") to import the file in batches of 1000, optional importeer("filename", size)
|
37
37
|
|
@@ -45,9 +45,7 @@ end
|
|
45
45
|
|
46
46
|
## Development
|
47
47
|
|
48
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
49
48
|
|
50
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
51
49
|
|
52
50
|
## Contributing
|
53
51
|
|
data/changelog.md
ADDED
data/lib/importeer_plan.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: importeer_plan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- rolf
|
@@ -136,6 +136,7 @@ files:
|
|
136
136
|
- LICENSE.txt
|
137
137
|
- README.md
|
138
138
|
- Rakefile
|
139
|
+
- changelog.md
|
139
140
|
- importeer_plan.gemspec
|
140
141
|
- lib/importeer_plan.rb
|
141
142
|
- lib/importeer_plan/version.rb
|