syrup 0.0.3 → 0.0.4
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.
- data/.gitignore +8 -7
- data/.rspec +2 -2
- data/CHANGELOG.rdoc +8 -2
- data/Gemfile +4 -4
- data/README.rdoc +46 -46
- data/Rakefile +8 -8
- data/TODO.rdoc +12 -12
- data/lib/syrup/account.rb +142 -143
- data/lib/syrup/information_missing_error.rb +8 -8
- data/lib/syrup/institutions/institution_base.rb +142 -142
- data/lib/syrup/institutions/uccu.rb +135 -0
- data/lib/syrup/institutions/zions_bank.rb +175 -175
- data/lib/syrup/transaction.rb +19 -19
- data/lib/syrup/version.rb +3 -3
- data/lib/syrup.rb +46 -46
- data/spec/spec_helper.rb +15 -15
- data/spec/syrup/account_spec.rb +52 -52
- data/spec/syrup/institutions/institution_base_spec.rb +119 -119
- data/spec/syrup/institutions/uccu_spec.rb +45 -0
- data/spec/syrup/institutions/zions_bank_spec.rb +40 -40
- data/spec/syrup/syrup_spec.rb +40 -40
- data/spec/syrup/transaction_spec.rb +20 -20
- data/syrup.gemspec +26 -26
- metadata +60 -42
metadata
CHANGED
@@ -1,56 +1,61 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: syrup
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.3
|
3
|
+
version: !ruby/object:Gem::Version
|
5
4
|
prerelease:
|
5
|
+
version: 0.0.4
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Don Wilson
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
|
13
|
+
date: 2011-10-10 00:00:00 -06:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
15
17
|
name: mechanize
|
16
|
-
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
17
20
|
none: false
|
18
|
-
requirements:
|
19
|
-
- -
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
21
24
|
version: 1.0.0
|
22
25
|
type: :runtime
|
23
|
-
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
26
28
|
name: multi_json
|
27
|
-
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
28
31
|
none: false
|
29
|
-
requirements:
|
30
|
-
- -
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
32
35
|
version: 1.0.3
|
33
36
|
type: :runtime
|
34
|
-
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
37
39
|
name: rspec
|
38
|
-
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
39
42
|
none: false
|
40
|
-
requirements:
|
41
|
-
- -
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
43
46
|
version: 2.6.0
|
44
47
|
type: :development
|
45
|
-
|
46
|
-
version_requirements: *25421004
|
48
|
+
version_requirements: *id003
|
47
49
|
description: Simple account balance and transactions extractor by scraping bank websites.
|
48
|
-
email:
|
50
|
+
email:
|
49
51
|
- dontangg@gmail.com
|
50
52
|
executables: []
|
53
|
+
|
51
54
|
extensions: []
|
55
|
+
|
52
56
|
extra_rdoc_files: []
|
53
|
-
|
57
|
+
|
58
|
+
files:
|
54
59
|
- .gitignore
|
55
60
|
- .rspec
|
56
61
|
- CHANGELOG.rdoc
|
@@ -62,38 +67,51 @@ files:
|
|
62
67
|
- lib/syrup/account.rb
|
63
68
|
- lib/syrup/information_missing_error.rb
|
64
69
|
- lib/syrup/institutions/institution_base.rb
|
70
|
+
- lib/syrup/institutions/uccu.rb
|
65
71
|
- lib/syrup/institutions/zions_bank.rb
|
66
72
|
- lib/syrup/transaction.rb
|
67
73
|
- lib/syrup/version.rb
|
68
74
|
- spec/spec_helper.rb
|
69
75
|
- spec/syrup/account_spec.rb
|
70
76
|
- spec/syrup/institutions/institution_base_spec.rb
|
77
|
+
- spec/syrup/institutions/uccu_spec.rb
|
71
78
|
- spec/syrup/institutions/zions_bank_spec.rb
|
72
79
|
- spec/syrup/syrup_spec.rb
|
73
80
|
- spec/syrup/transaction_spec.rb
|
74
81
|
- syrup.gemspec
|
82
|
+
has_rdoc: true
|
75
83
|
homepage: http://github.com/dontangg/syrup
|
76
84
|
licenses: []
|
85
|
+
|
77
86
|
post_install_message:
|
78
87
|
rdoc_options: []
|
79
|
-
|
88
|
+
|
89
|
+
require_paths:
|
80
90
|
- lib
|
81
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
92
|
none: false
|
83
|
-
requirements:
|
84
|
-
- -
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version:
|
87
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: "0"
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
98
|
none: false
|
89
|
-
requirements:
|
90
|
-
- -
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
version:
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: "0"
|
93
103
|
requirements: []
|
104
|
+
|
94
105
|
rubyforge_project: syrup
|
95
|
-
rubygems_version: 1.
|
106
|
+
rubygems_version: 1.5.0
|
96
107
|
signing_key:
|
97
108
|
specification_version: 3
|
98
109
|
summary: Simple account balance and transactions extractor.
|
99
|
-
test_files:
|
110
|
+
test_files:
|
111
|
+
- spec/spec_helper.rb
|
112
|
+
- spec/syrup/account_spec.rb
|
113
|
+
- spec/syrup/institutions/institution_base_spec.rb
|
114
|
+
- spec/syrup/institutions/uccu_spec.rb
|
115
|
+
- spec/syrup/institutions/zions_bank_spec.rb
|
116
|
+
- spec/syrup/syrup_spec.rb
|
117
|
+
- spec/syrup/transaction_spec.rb
|