stats_package_syntax_file_generator 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/tests/ts_all.rb ADDED
@@ -0,0 +1,20 @@
1
+ # This file is part of the Minnesota Population Center's stats_package_syntax_file_generator project.
2
+ # For copyright and licensing information, see the NOTICE and LICENSE files
3
+ # in this project's top-level directory, and also on-line at:
4
+ # https://github.com/mnpopcenter/stats_package_syntax_file_generator
5
+
6
+ require 'test/unit'
7
+
8
+ %w(
9
+ setup
10
+ tc_controller
11
+ tc_variable
12
+ tc_value
13
+ tc_maker
14
+ tc_maker_sas
15
+ tc_maker_spss
16
+ tc_maker_stata
17
+ tc_maker_sts
18
+ ).each do |f|
19
+ require File.expand_path(File.join(File.dirname(__FILE__), f))
20
+ end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stats_package_syntax_file_generator
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Monty Hindman, Marcus Peterson, Colin Davis, Dan Elbert, Jayandra Pokharel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-09-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A tool for producing statistical package syntax files for fixed-column data files
14
+ email: mpcit@umn.edu
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files:
18
+ - README
19
+ files:
20
+ - README
21
+ - lib/stats_package_syntax_file_generator.rb
22
+ - lib/stats_package_syntax_file_generator/controller.rb
23
+ - lib/stats_package_syntax_file_generator/maker.rb
24
+ - lib/stats_package_syntax_file_generator/maker_sas.rb
25
+ - lib/stats_package_syntax_file_generator/maker_spss.rb
26
+ - lib/stats_package_syntax_file_generator/maker_stata.rb
27
+ - lib/stats_package_syntax_file_generator/maker_sts.rb
28
+ - lib/stats_package_syntax_file_generator/value.rb
29
+ - lib/stats_package_syntax_file_generator/variable.rb
30
+ - tests/input_all_vars.yaml
31
+ - tests/input_controller.yaml
32
+ - tests/setup.rb
33
+ - tests/tc_controller.rb
34
+ - tests/tc_maker.rb
35
+ - tests/tc_maker_sas.rb
36
+ - tests/tc_maker_spss.rb
37
+ - tests/tc_maker_stata.rb
38
+ - tests/tc_maker_sts.rb
39
+ - tests/tc_value.rb
40
+ - tests/tc_variable.rb
41
+ - tests/ts_all.rb
42
+ homepage: https://github.com/mnpopcenter/stats_package_syntax_file_generator
43
+ licenses:
44
+ - MPL-2.0
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project: '[none]'
62
+ rubygems_version: 2.4.8
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Produces statistical package syntax files for fixed-column data.
66
+ test_files:
67
+ - tests/ts_all.rb