movieDB 0.1.8 → 0.1.9

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: 3efb92c595bb3d14436ac5d595e9d378ca83eb5e
4
- data.tar.gz: 216c9621dcc376e6114c813541c24c6d65ed2721
3
+ metadata.gz: 5f17c2732790f64b960010075a59107de517385d
4
+ data.tar.gz: b5058e6ec52a4c1affe409c93dcdd51c9ccc6625
5
5
  SHA512:
6
- metadata.gz: 3fcd5d8b26beed7ffa085a2b4c971f3e088611736a9b76564a76c764e4f7ea9a7777a4309fc8b0088a1dde749f541d3db3b855cbb6d134d88c8179aa52983ab9
7
- data.tar.gz: dfa8c5c43d868f2eb31d7451f6c16389c29c89151126f4654869aa9103b9350f5a9fc08a4874e9a011f6be6474a1721aef7408e2b195f3526b61bd79ce00df2b
6
+ metadata.gz: 35b23f1af4dcbdf9a705e3651e22b5af4cdda3b15b93b68ead37ffe5f7d880cf868df71a011f3f1d2f3ba197adce5d7fc8b4c4126623321bab960a4b2ef5ee44
7
+ data.tar.gz: 168741faaff822022c26a4e083b66099034bb50a5bdc346bc55349da545ccef6d81d4ef8abc33d1c061fc7d70b73a6facafb247ea052d4ef65983521b049be63
data/README.md CHANGED
@@ -32,6 +32,10 @@ Or install it yourself as:
32
32
  $ irb
33
33
 
34
34
  > require 'movieDB'
35
+
36
+ > require 'MovieDB/data_export'
37
+
38
+ > MovieDB::Movie.clear_data_store #IMPORTANT: Returns and empty array
35
39
 
36
40
  > MovieDB::Movie.send(:get_multiple_imdb_movie_data, "2024544", "1800241", "0791314")
37
41
 
@@ -41,9 +45,12 @@ Or install it yourself as:
41
45
 
42
46
  The excel document is stored in the reports directory.
43
47
 
44
- $ cd /reports/data_analysis_20131203.xls
48
+ $ cd /reports/data_analysis_20131203.xls
45
49
 
46
50
  ## Usage - Data Analysis
47
51
 
48
- $ wip
52
+ $ irb
53
+
54
+ > require 'MovieDB/data_analysis'
49
55
 
56
+ > "work-in-progress"
@@ -28,7 +28,7 @@ module MovieDB
28
28
  include PATH_AOV::Total_Sum_Of_Squares
29
29
 
30
30
  class << self
31
- #TODO: Check the data analysis type and input inot generate method as an attribute
31
+ #TODO: Check the data analysis(DA) name. Write a define_method and include the DA.
32
32
 
33
33
  def export_movie_data
34
34
  create_spreadsheet_file
@@ -1,3 +1,3 @@
1
1
  module MovieDB
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
data/reports/.DS_Store ADDED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: movieDB
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Albert_McKeever
@@ -162,6 +162,7 @@ files:
162
162
  - lib/movieDB/version.rb
163
163
  - movieDB.gemspec
164
164
  - npm-debug.log
165
+ - reports/.DS_Store
165
166
  - spec/.DS_Store
166
167
  - spec/data_analysis_spec.rb
167
168
  - spec/data_export_spec.rb