spout 0.8.0.rc5 → 0.8.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +38 -28
  3. data/lib/spout/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1038cad773aceeeaac1094a6adfd45b2ad083272
4
- data.tar.gz: e6f1973edde2c5ebd32ced6f84873de3bcb7b29b
3
+ metadata.gz: fb8b0fe57a3e006925edf7b65915c14b6086c7d5
4
+ data.tar.gz: 1f7ddf780a9fcde8b2fbfad145b8362bd4451f59
5
5
  SHA512:
6
- metadata.gz: d88dbc04759648e28509bd63d171a307f029776c73e2b4297212d9035412ee16bf01f6b06180df9a4f22bb282c622547bd5c100f7db7481811e2c82b2010be67
7
- data.tar.gz: 2262b47b04d4dca34e15b655a8d65f53b31b79cc006a81949d9a8b0d515c90852bbdb96225e6065aacb843eaef4e7ad88e57082d9b03d573e462e9061e785ee0
6
+ metadata.gz: c70ac2f434d61a7bfb90e95b02da53819720b0b42efe87684f915a415ddfc52899810c6978913d64fddbee5b213b6569e46c052b1e960722989f91c532dfaf99
7
+ data.tar.gz: 04aa79a137afa44b6e75463f57ba365889394e5de0fd4e257c7fcbea799ede030724e73c43a3d3e735d4b2a2718d1cf50870ce31099217ad0a28f7bee02af082
data/CHANGELOG.md CHANGED
@@ -1,36 +1,46 @@
1
- ## 0.8.0
1
+ ## 0.8.0 (June 27, 2014)
2
2
 
3
3
  ### Enhancements
4
- - Tests now include check for variables that reference one or more forms
5
- - `include Spout::Tests::FormExistenceValidation`
6
- - `include Spout::Tests::FormNameUniqueness`
7
- - `include Spout::Tests::FormNameMatch`
8
- - Test iterators have been added to provide access to `@variables`, `@forms`, and `@domains` to build custom tests in `dictionary_test.rb`
9
- - Add the line `include Spout::Helpers::Iterators` to `dictionary_test.rb` to access the iterators
10
- - See [README.md](https://github.com/sleepepi/spout/blob/master/README.md) for examples
11
- - Added `spout graphs` command that generates JSON charts and tables of each variable in a dataset
12
- - This command requires a .spout.yml file to be specified to identify the following variables:
13
- - `visit`: This variable is used to separate subject encounters in a histogram
14
- - `charts`: Array of choices, numeric, or integer variables for charts
15
- - The `spout pngs` command now renders the histogram form for each variable
16
- - The `spout coverage` command now lists variables that are defined in the data dictionary and that do not exist in any CSV dataset
17
- - The `spout coverage` command now lists domains that are defined in the data dictionary and not referenced by any variable
18
- - Added `spout outliers` command that returns a list of integer or numeric variables that contain major and minor outliers
19
- - Removed the deprecated `spout hybrid` command
20
- - Spout tests are now run using minitest in favor of test unit
21
- - Spout dictionary can now be loaded using the following command in irb:
22
- - `require 'spout'; dictionary = Spout::Models::Dictionary.new(Dir.pwd)`
23
- - `dictionary.load_all!`
24
- - `dictionary.variables.count`
25
- - `dictionary.domains.count`
26
- - `dictionary.forms.count`
27
- - The `spout export` command now includes a `forms.csv` file that exports form information referenced by variables
28
- - Graphs for histograms now specify units on the x-axis
29
- - The `spout graphs` command does not generate graphs when no underlying values exists for the variable
4
+ - **Testing Changes**
5
+ - Tests now include check for variables that reference one or more forms
6
+ - `include Spout::Tests::FormExistenceValidation`
7
+ - `include Spout::Tests::FormNameUniqueness`
8
+ - `include Spout::Tests::FormNameMatch`
9
+ - Test iterators have been added to provide access to `@variables`, `@forms`, and `@domains` to build custom tests in `dictionary_test.rb`
10
+ - Add the line `include Spout::Helpers::Iterators` to `dictionary_test.rb` to access the iterators
11
+ - See [README.md](https://github.com/sleepepi/spout/blob/master/README.md) for examples
12
+ - Spout tests are now run using `Minitest` in favor of `Test::Unit`
13
+ - **Graph Generation Changes**
14
+ - Added `spout graphs` command that generates JSON charts and tables of each variable in a dataset
15
+ - This command requires a `.spout.yml` file to be specified to identify the following variables:
16
+ - `visit`: This variable is used to separate subject encounters in a histogram
17
+ - `charts`: Array of choices, numeric, or integer variables for charts
18
+ - Graphs for histograms now specify units on the x-axis
19
+ - The `spout graphs` command does not generate graphs when no underlying values exists for the variable
20
+ - **Image Generation Changes**
21
+ - The `spout pngs` command now renders the histogram for each variable
22
+ - **Coverage Command Changes**
23
+ - The `spout coverage` command now lists variables that are defined in the data dictionary and that do not exist in any CSV dataset
24
+ - The `spout coverage` command now lists domains that are defined in the data dictionary and not referenced by any variable
25
+ - **Outlier Identification Changes**
26
+ - Added `spout outliers` command that returns a list of integer or numeric variables that contain major and minor outliers
27
+ - **Export Command Changes**
28
+ - The `spout export` command now includes a `forms.csv` file that exports form information referenced by variables
29
+ - **General Changes**
30
+ - Spout dictionary can now be loaded using the following command in `irb`:
31
+ ```ruby
32
+ require 'spout'
33
+ dictionary = Spout::Models::Dictionary.new(Dir.pwd)
34
+ dictionary.load_all!
35
+ dictionary.variables.count
36
+ dictionary.domains.count
37
+ dictionary.forms.count
38
+ ```
39
+ - Removed the deprecated `spout hybrid` command
30
40
  - **Gem Changes**
41
+ - Use of Ruby 2.1.2 is now recommended
31
42
  - Updated to colorize 0.7.2
32
43
  - Updated to minitest
33
- - Use of Ruby 2.1.2 is now recommended
34
44
 
35
45
  ### Bug Fix
36
46
  - Spout commands are now more consistently case insensitive for file and column names across platforms
data/lib/spout/version.rb CHANGED
@@ -3,7 +3,7 @@ module Spout
3
3
  MAJOR = 0
4
4
  MINOR = 8
5
5
  TINY = 0
6
- BUILD = "rc5" # nil, "pre", "rc", "rc2"
6
+ BUILD = nil # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0.rc5
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Remo Mueller
@@ -179,9 +179,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
179
179
  version: '0'
180
180
  required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  requirements:
182
- - - ">"
182
+ - - ">="
183
183
  - !ruby/object:Gem::Version
184
- version: 1.3.1
184
+ version: '0'
185
185
  requirements: []
186
186
  rubyforge_project:
187
187
  rubygems_version: 2.2.2