optimus-ep 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.9.1. Change dependency from rparsec to rparsec-ruby19
2
+
1
3
  v0.9.0. Ruby 1.9 compatibility.
2
4
 
3
5
  v0.8.1. Remove --filter-columns option from eprime2tabfile
data/Rakefile CHANGED
@@ -1,11 +1,11 @@
1
1
  require 'echoe'
2
- require 'lib/version'
2
+ require './lib/version'
3
3
 
4
4
  Echoe.new("optimus-ep", Optimus::VERSION::STRING) do |p|
5
5
  p.author = "Nate Vack"
6
6
  p.email = "njvack@wisc.edu"
7
7
  p.summary = "Utilities to process behavioral data generated by E-Prime"
8
8
  p.url = "http://github.com/njvack/optimus-ep"
9
- p.runtime_dependencies = ["rparsec >=1.0"]
9
+ p.runtime_dependencies = ["rparsec-ruby19 >=1.0"]
10
10
  p.development_dependencies = ["rspec"]
11
11
  end
data/lib/version.rb CHANGED
@@ -2,7 +2,7 @@ module Optimus
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/optimus-ep.gemspec CHANGED
@@ -1,37 +1,38 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{optimus-ep}
5
- s.version = "0.9.0"
4
+ s.name = "optimus-ep"
5
+ s.version = "0.9.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Nate Vack"]
9
- s.date = %q{2010-11-01}
10
- s.description = %q{Utilities to process behavioral data generated by E-Prime}
11
- s.email = %q{njvack@wisc.edu}
9
+ s.cert_chain = ["/Users/njvack/.gem/cert/gem-public_cert.pem"]
10
+ s.date = "2012-02-09"
11
+ s.description = "Utilities to process behavioral data generated by E-Prime"
12
+ s.email = "njvack@wisc.edu"
12
13
  s.executables = ["eprime2tabfile", "extract_timings"]
13
14
  s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "bin/eprime2tabfile", "bin/extract_timings", "lib/eprimetab_parser.rb", "lib/excel_parser.rb", "lib/expression_parser/evaluators.rb", "lib/expression_parser/expressions.rb", "lib/log_file_parser.rb", "lib/optimus.rb", "lib/optimus_data.rb", "lib/optimus_reader.rb", "lib/parsed_calculator.rb", "lib/raw_tab_parser.rb", "lib/runners/generic_runner.rb", "lib/runners/yaml_template/option_parser.rb", "lib/runners/yaml_template/runner.rb", "lib/tabfile_parser.rb", "lib/tabfile_writer.rb", "lib/transformers/basic_transformer.rb", "lib/transformers/column_calculator.rb", "lib/transformers/multipasser.rb", "lib/transformers/row_filter.rb", "lib/transformers/timing_extractor.rb", "lib/version.rb", "lib/writers/stimtimes_writer.rb"]
14
15
  s.files = ["CHANGELOG", "GPL.txt", "LICENSE", "Manifest", "README", "Rakefile", "autotest/discover.rb", "bin/eprime2tabfile", "bin/extract_timings", "lib/eprimetab_parser.rb", "lib/excel_parser.rb", "lib/expression_parser/evaluators.rb", "lib/expression_parser/expressions.rb", "lib/log_file_parser.rb", "lib/optimus.rb", "lib/optimus_data.rb", "lib/optimus_reader.rb", "lib/parsed_calculator.rb", "lib/raw_tab_parser.rb", "lib/runners/generic_runner.rb", "lib/runners/yaml_template/option_parser.rb", "lib/runners/yaml_template/runner.rb", "lib/tabfile_parser.rb", "lib/tabfile_writer.rb", "lib/transformers/basic_transformer.rb", "lib/transformers/column_calculator.rb", "lib/transformers/multipasser.rb", "lib/transformers/row_filter.rb", "lib/transformers/timing_extractor.rb", "lib/version.rb", "lib/writers/stimtimes_writer.rb", "spec/eprimetab_parser_spec.rb", "spec/excel_parser_spec.rb", "spec/expression_parser/evaluators_spec.rb", "spec/expression_parser/expressions_spec.rb", "spec/log_file_parser_spec.rb", "spec/optimus_data_spec.rb", "spec/optimus_reader_spec.rb", "spec/parsed_calculator_spec.rb", "spec/raw_tab_parser_spec.rb", "spec/runners/generic_runner_spec.rb", "spec/runners/yaml_template/option_parser_spec.rb", "spec/runners/yaml_template/runner_spec.rb", "spec/samples/bad_excel_tsv.txt", "spec/samples/corrupt_log_file.txt", "spec/samples/eprime_tsv.txt", "spec/samples/excel_tsv.txt", "spec/samples/optimus_log.txt", "spec/samples/optimus_log_utf16le.txt", "spec/samples/raw_tsv.txt", "spec/samples/short_columns.txt", "spec/samples/sorted_columns.txt", "spec/samples/std_columns.txt", "spec/samples/unknown_type.txt", "spec/samples/unreadable_file", "spec/spec_helper.rb", "spec/tabfile_parser_spec.rb", "spec/tabfile_writer_spec.rb", "spec/transformers/basic_transformer_spec.rb", "spec/transformers/column_calculator_spec.rb", "spec/transformers/multipasser_spec.rb", "spec/transformers/row_filter_spec.rb", "spec/transformers/timing_extractor_spec.rb", "spec/writers/stimtimes_writer_spec.rb", "optimus-ep.gemspec"]
15
- s.homepage = %q{http://github.com/njvack/optimus-ep}
16
+ s.homepage = "http://github.com/njvack/optimus-ep"
16
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Optimus-ep", "--main", "README"]
17
18
  s.require_paths = ["lib"]
18
- s.rubyforge_project = %q{optimus-ep}
19
- s.rubygems_version = %q{1.3.7}
20
- s.summary = %q{Utilities to process behavioral data generated by E-Prime}
19
+ s.rubyforge_project = "optimus-ep"
20
+ s.rubygems_version = "1.8.15"
21
+ s.signing_key = "/Users/njvack/.gem/cert/gem-private_key.pem"
22
+ s.summary = "Utilities to process behavioral data generated by E-Prime"
21
23
 
22
24
  if s.respond_to? :specification_version then
23
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
25
  s.specification_version = 3
25
26
 
26
27
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
- s.add_runtime_dependency(%q<rparsec>, [">= 1.0"])
28
+ s.add_runtime_dependency(%q<rparsec-ruby19>, [">= 1.0"])
28
29
  s.add_development_dependency(%q<rspec>, [">= 0"])
29
30
  else
30
- s.add_dependency(%q<rparsec>, [">= 1.0"])
31
+ s.add_dependency(%q<rparsec-ruby19>, [">= 1.0"])
31
32
  s.add_dependency(%q<rspec>, [">= 0"])
32
33
  end
33
34
  else
34
- s.add_dependency(%q<rparsec>, [">= 1.0"])
35
+ s.add_dependency(%q<rparsec-ruby19>, [">= 1.0"])
35
36
  s.add_dependency(%q<rspec>, [">= 0"])
36
37
  end
37
38
  end
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,19 +1,60 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: optimus-ep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nate Vack
9
9
  autorequire:
10
10
  bindir: bin
11
- cert_chain: []
12
- date: 2010-11-01 00:00:00.000000000 Z
11
+ cert_chain:
12
+ - ! '-----BEGIN CERTIFICATE-----
13
+
14
+ MIIDPDCCAiSgAwIBAgIBADANBgkqhkiG9w0BAQUFADBEMQ8wDQYDVQQDDAZuanZh
15
+
16
+ Y2sxHDAaBgoJkiaJk/IsZAEZFgxmcmVzaGZvcmV2ZXIxEzARBgoJkiaJk/IsZAEZ
17
+
18
+ FgNuZXQwHhcNMTAxMTAxMTYzNjU3WhcNMTExMTAxMTYzNjU3WjBEMQ8wDQYDVQQD
19
+
20
+ DAZuanZhY2sxHDAaBgoJkiaJk/IsZAEZFgxmcmVzaGZvcmV2ZXIxEzARBgoJkiaJ
21
+
22
+ k/IsZAEZFgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDn2bwf
23
+
24
+ toh5i82PTx92q2Q9NGgsRnCZyJBPygrzxIVlZIJCG/o6PHi1nsjL9PFV4e80GQit
25
+
26
+ /BfhXQu9qI3FEB4V3JnipGM1ROQ5Otxp0sjRbt6TUqdt6EsgogfC+92FcOLjq0e5
27
+
28
+ 0IhBCsiAl59mCVLVIKCc8opChciqUvepj8aWm9f1dIsTqizohxX0/3GctBTpPb7V
29
+
30
+ uJiKwaXyYuWpVzw2W8+nahgZkfmt7u+U0z3+HCG55wBXU/jlvkdf9WV3zkF73FWn
31
+
32
+ cI2Ka/Fe/+niMTnA0NqvDAmdaLho862L+nXrNf8hQ7QhNThGYfaLLrvx2J+MzUOl
33
+
34
+ 6CmX9nyt1f6zbuXVAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0G
35
+
36
+ A1UdDgQWBBScWwkwM7HNNwydyqUm/468FWq92jANBgkqhkiG9w0BAQUFAAOCAQEA
37
+
38
+ iVKqrGzBiyDldc/Jj2rWoP5dxoxTBfMIUseclbIPuji0L/nPUMRovMANuASyTeLG
39
+
40
+ 35Sz5cVaZKT8DRXLWrivo8Mni1K/Av3vjy0zJpI2fOvpGtxHxCIvA1Rn3DDUYN2V
41
+
42
+ kxGd07Yx2oBgz6NAzG+joCLpV7a9Ourrf0GF2fPskyym0iiD5wK3UqPCf7qjnlK+
43
+
44
+ XsLIxgC5XAnJ0KLg04svAkuzhdZDmcFSMjbVV1m/2k/6wHD7g2wA75c+fQIXzsAo
45
+
46
+ RoSvN+kCqfmclbI+KrvOxed/zBOLHjsnT/5ELSX481qDe3rdYNVPsY0tdRidNUgC
47
+
48
+ YCKiqOZ/UpDcaNKaGup13w==
49
+
50
+ -----END CERTIFICATE-----
51
+
52
+ '
53
+ date: 2012-02-09 00:00:00.000000000 Z
13
54
  dependencies:
14
55
  - !ruby/object:Gem::Dependency
15
- name: rparsec
16
- requirement: &2156225200 !ruby/object:Gem::Requirement
56
+ name: rparsec-ruby19
57
+ requirement: &2152782200 !ruby/object:Gem::Requirement
17
58
  none: false
18
59
  requirements:
19
60
  - - ! '>='
@@ -21,10 +62,10 @@ dependencies:
21
62
  version: '1.0'
22
63
  type: :runtime
23
64
  prerelease: false
24
- version_requirements: *2156225200
65
+ version_requirements: *2152782200
25
66
  - !ruby/object:Gem::Dependency
26
67
  name: rspec
27
- requirement: &2156224580 !ruby/object:Gem::Requirement
68
+ requirement: &2152781580 !ruby/object:Gem::Requirement
28
69
  none: false
29
70
  requirements:
30
71
  - - ! '>='
@@ -32,7 +73,7 @@ dependencies:
32
73
  version: '0'
33
74
  type: :development
34
75
  prerelease: false
35
- version_requirements: *2156224580
76
+ version_requirements: *2152781580
36
77
  description: Utilities to process behavioral data generated by E-Prime
37
78
  email: njvack@wisc.edu
38
79
  executables:
metadata.gz.sig ADDED
Binary file