quandl_babelfish 0.0.10 → 0.0.11
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 +7 -7
- data/.travis.yml +12 -12
- data/Gemfile +1 -1
- data/LICENSE +7 -7
- data/README.md +18 -18
- data/Rakefile +7 -7
- data/UPGRADE.md +46 -43
- data/lib/quandl/babelfish.rb +28 -28
- data/lib/quandl/babelfish/chronometer.rb +43 -43
- data/lib/quandl/babelfish/cleaner.rb +35 -35
- data/lib/quandl/babelfish/date_maid.rb +246 -246
- data/lib/quandl/babelfish/helper.rb +8 -8
- data/lib/quandl/babelfish/number_maid.rb +79 -79
- data/lib/quandl/babelfish/version.rb +4 -4
- data/lib/quandl/error/guess_date_format.rb +4 -4
- data/lib/quandl/error/invalid_date.rb +4 -4
- data/lib/quandl/error/standard.rb +26 -26
- data/lib/quandl/error/unknown_date_format.rb +4 -4
- data/quandl_babelfish.gemspec +22 -22
- data/spec/lib/quandl/babelfish/chronometer_spec.rb +50 -50
- data/spec/lib/quandl/babelfish/cleaner_spec.rb +85 -85
- data/spec/lib/quandl/babelfish/date_maid_spec.rb +536 -527
- data/spec/lib/quandl/babelfish/helper_spec.rb +44 -44
- data/spec/lib/quandl/babelfish/number_maid_spec.rb +131 -131
- data/spec/lib/quandl/babelfish_spec.rb +15 -15
- data/spec/spec_helper.rb +12 -12
- data/spec/support/matchers/be_eq_at_index.rb +31 -31
- metadata +4 -18
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quandl_babelfish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-04-
|
12
|
+
date: 2014-04-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -106,30 +106,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
106
|
- - ! '>='
|
107
107
|
- !ruby/object:Gem::Version
|
108
108
|
version: '0'
|
109
|
-
segments:
|
110
|
-
- 0
|
111
|
-
hash: 4375924718490433472
|
112
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
110
|
none: false
|
114
111
|
requirements:
|
115
112
|
- - ! '>='
|
116
113
|
- !ruby/object:Gem::Version
|
117
114
|
version: '0'
|
118
|
-
segments:
|
119
|
-
- 0
|
120
|
-
hash: 4375924718490433472
|
121
115
|
requirements: []
|
122
116
|
rubyforge_project:
|
123
|
-
rubygems_version: 1.8.
|
117
|
+
rubygems_version: 1.8.28
|
124
118
|
signing_key:
|
125
119
|
specification_version: 3
|
126
120
|
summary: Quandl Data Cleaner
|
127
|
-
test_files:
|
128
|
-
- spec/lib/quandl/babelfish/chronometer_spec.rb
|
129
|
-
- spec/lib/quandl/babelfish/cleaner_spec.rb
|
130
|
-
- spec/lib/quandl/babelfish/date_maid_spec.rb
|
131
|
-
- spec/lib/quandl/babelfish/helper_spec.rb
|
132
|
-
- spec/lib/quandl/babelfish/number_maid_spec.rb
|
133
|
-
- spec/lib/quandl/babelfish_spec.rb
|
134
|
-
- spec/spec_helper.rb
|
135
|
-
- spec/support/matchers/be_eq_at_index.rb
|
121
|
+
test_files: []
|