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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +38 -28
- data/lib/spout/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb8b0fe57a3e006925edf7b65915c14b6086c7d5
|
4
|
+
data.tar.gz: 1f7ddf780a9fcde8b2fbfad145b8362bd4451f59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
-
|
5
|
-
-
|
6
|
-
|
7
|
-
|
8
|
-
-
|
9
|
-
-
|
10
|
-
|
11
|
-
-
|
12
|
-
-
|
13
|
-
|
14
|
-
|
15
|
-
-
|
16
|
-
-
|
17
|
-
-
|
18
|
-
-
|
19
|
-
-
|
20
|
-
-
|
21
|
-
-
|
22
|
-
|
23
|
-
- `dictionary
|
24
|
-
- `dictionary
|
25
|
-
|
26
|
-
- `
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-
|
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
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
|
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:
|
184
|
+
version: '0'
|
185
185
|
requirements: []
|
186
186
|
rubyforge_project:
|
187
187
|
rubygems_version: 2.2.2
|