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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 563c565cba052ee909f1f4c42eb3029c9195e958
4
- data.tar.gz: 58744b2465821b38daa5cb0ba48488390e709d32
3
+ metadata.gz: 465e9faee52dbe6fedf793268612db940124e3b7
4
+ data.tar.gz: f526162e820ff1cd6b690e9b9c161e5d2ae9ab79
5
5
  SHA512:
6
- metadata.gz: aa6ffa5899eda9e706db47a814eaa5c3d46542376a517538e9cb73e3dfc858a4fb2c3cea2484ef86b3ffae3e1e365e23990f740ce87477f82f66940a67fd03c1
7
- data.tar.gz: c796fba1a5b6a6d2e3824b0fa3439bf90dd99e6c6709eeca439ebe35d455895a41b7ba66f67158ae0882e6a9f098a1ec93c44366ba8382af76962b52d24f470f
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
@@ -0,0 +1,5 @@
1
+ ###### 0.0.5
2
+ todo
3
+
4
+ ###### 0.0.4
5
+ start logging changes
@@ -1,4 +1,4 @@
1
- # require "importeer_plan/version"
1
+ require "importeer_plan/version"
2
2
 
3
3
  module ImporteerPlan
4
4
  class Importeer
@@ -1,3 +1,3 @@
1
1
  module ImporteerPlan
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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