elfproef_plan 0.0.2 → 0.0.3
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 +114 -0
- data/app/assets/javascripts/elfproef/elfproef.coffee +7 -2
- data/changelog.md +8 -0
- data/lib/elfproef_plan/version.rb +1 -1
- data/lib/elfproef_plan.rb +3 -1
- data/test/dummy/app/assets/javascripts/application.js +1 -1
- data/test/dummy/log/development.log +2154 -0
- data/test/dummy/log/test.log +2257 -0
- data/test/elfproef_plan_test.rb +2 -2
- metadata +8 -4
- data/test/dummy/tmp/pids/server.pid +0 -1
data/test/elfproef_plan_test.rb
CHANGED
@@ -21,7 +21,7 @@ describe ElfproefPlan::ElfProef do
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
describe "check elfproef
|
24
|
+
describe "check elfproef validBsn method" do
|
25
25
|
|
26
26
|
it "check a valid bsn" do
|
27
27
|
@elfproef = ElfproefPlan::ElfProef.new(123456782)
|
@@ -32,7 +32,7 @@ describe ElfproefPlan::ElfProef do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
|
35
|
-
describe "check elfproef
|
35
|
+
describe "check elfproef validRekening method" do
|
36
36
|
|
37
37
|
it "check a valid rekeningnummer" do
|
38
38
|
@elfproef = ElfproefPlan::ElfProef.new(123456789)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elfproef_plan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rolf van der Geize,L-Plan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -186,9 +186,11 @@ extensions: []
|
|
186
186
|
extra_rdoc_files: []
|
187
187
|
files:
|
188
188
|
- MIT-LICENSE
|
189
|
+
- README.md
|
189
190
|
- Rakefile
|
190
191
|
- app/assets/javascripts/elfproef/elfproef.coffee
|
191
192
|
- app/assets/javascripts/elfproef_plan.coffee
|
193
|
+
- changelog.md
|
192
194
|
- lib/elfproef_plan.rb
|
193
195
|
- lib/elfproef_plan/engine.rb
|
194
196
|
- lib/elfproef_plan/version.rb
|
@@ -236,11 +238,12 @@ files:
|
|
236
238
|
- test/dummy/config/secrets.yml
|
237
239
|
- test/dummy/db/migrate/20151120090423_create_employees.rb
|
238
240
|
- test/dummy/db/schema.rb
|
241
|
+
- test/dummy/log/development.log
|
242
|
+
- test/dummy/log/test.log
|
239
243
|
- test/dummy/public/404.html
|
240
244
|
- test/dummy/public/422.html
|
241
245
|
- test/dummy/public/500.html
|
242
246
|
- test/dummy/public/favicon.ico
|
243
|
-
- test/dummy/tmp/pids/server.pid
|
244
247
|
- test/elfproef_plan_test.rb
|
245
248
|
- test/fixtures/employees.yml
|
246
249
|
- test/integration/employee_test.rb
|
@@ -312,13 +315,14 @@ test_files:
|
|
312
315
|
- test/dummy/config.ru
|
313
316
|
- test/dummy/db/migrate/20151120090423_create_employees.rb
|
314
317
|
- test/dummy/db/schema.rb
|
318
|
+
- test/dummy/log/development.log
|
319
|
+
- test/dummy/log/test.log
|
315
320
|
- test/dummy/public/404.html
|
316
321
|
- test/dummy/public/422.html
|
317
322
|
- test/dummy/public/500.html
|
318
323
|
- test/dummy/public/favicon.ico
|
319
324
|
- test/dummy/Rakefile
|
320
325
|
- test/dummy/README.rdoc
|
321
|
-
- test/dummy/tmp/pids/server.pid
|
322
326
|
- test/elfproef_plan_test.rb
|
323
327
|
- test/fixtures/employees.yml
|
324
328
|
- test/integration/employee_test.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
57846
|