roboneuro 0.1.1

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 (83) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.env-example +12 -0
  4. data/.env.test +8 -0
  5. data/.github/workflows/docker-image.yml +63 -0
  6. data/.github/workflows/tests.yml +28 -0
  7. data/.gitignore +3 -0
  8. data/Gemfile +3 -0
  9. data/Gemfile.lock +135 -0
  10. data/LICENSE +21 -0
  11. data/README.md +190 -0
  12. data/Rakefile +13 -0
  13. data/bin/whedon +131 -0
  14. data/fixtures/latex_paper/paper.tex +0 -0
  15. data/fixtures/paper/10.21105.jcon.00017.crossref.xml +88 -0
  16. data/fixtures/paper/crossref-metadata.yaml +34 -0
  17. data/fixtures/paper/paper-bib.md +27 -0
  18. data/fixtures/paper/paper-single-author.md +24 -0
  19. data/fixtures/paper/paper-with-harder-names.md +27 -0
  20. data/fixtures/paper/paper-with-missing-affiliations.md +21 -0
  21. data/fixtures/paper/paper.bib +65 -0
  22. data/fixtures/paper/paper.html +14 -0
  23. data/fixtures/paper/paper.md +27 -0
  24. data/fixtures/paper/paper.pdf +0 -0
  25. data/fixtures/paper/paper.xml +28 -0
  26. data/fixtures/paper/paper_with_missing_title.md +26 -0
  27. data/fixtures/review_body.txt +48 -0
  28. data/fixtures/test_paper/nested/paper.bib +0 -0
  29. data/fixtures/test_paper/nested/paper.md +0 -0
  30. data/fixtures/test_paper/paper.bib +0 -0
  31. data/fixtures/test_paper/paper.md +0 -0
  32. data/fixtures/vcr_cassettes/joss-lookup.yml +58 -0
  33. data/fixtures/vcr_cassettes/review.yml +237 -0
  34. data/fixtures/vcr_cassettes/reviews.yml +270 -0
  35. data/lib/whedon/auditor.rb +39 -0
  36. data/lib/whedon/author.rb +81 -0
  37. data/lib/whedon/bibtex_parser.rb +103 -0
  38. data/lib/whedon/compilers.rb +379 -0
  39. data/lib/whedon/github.rb +12 -0
  40. data/lib/whedon/orcid_validator.rb +83 -0
  41. data/lib/whedon/processor.rb +178 -0
  42. data/lib/whedon/review.rb +25 -0
  43. data/lib/whedon/reviews.rb +29 -0
  44. data/lib/whedon/version.rb +3 -0
  45. data/lib/whedon.rb +387 -0
  46. data/paperdraft.Dockerfile +48 -0
  47. data/pkg/roboneuro-0.1.0.gem +0 -0
  48. data/resources/.DS_Store +0 -0
  49. data/resources/NeuroLibre/.DS_Store +0 -0
  50. data/resources/NeuroLibre/aas-logo.png +0 -0
  51. data/resources/NeuroLibre/apa.csl +1919 -0
  52. data/resources/NeuroLibre/defaults.yaml +14 -0
  53. data/resources/NeuroLibre/latex.template +541 -0
  54. data/resources/NeuroLibre/logo.png +0 -0
  55. data/resources/NeuroLibre/logo_link.png +0 -0
  56. data/resources/apa.csl +1919 -0
  57. data/resources/crossref.template +89 -0
  58. data/resources/docker-defaults.yaml +42 -0
  59. data/resources/docker-entrypoint.sh +37 -0
  60. data/resources/jats.csl +204 -0
  61. data/resources/jats.template +105 -0
  62. data/resources/jose/apa.csl +1919 -0
  63. data/resources/jose/defaults.yaml +14 -0
  64. data/resources/jose/latex.template +486 -0
  65. data/resources/jose/logo.png +0 -0
  66. data/resources/joss/aas-logo.png +0 -0
  67. data/resources/joss/apa.csl +1919 -0
  68. data/resources/joss/defaults.yaml +14 -0
  69. data/resources/joss/latex.template +525 -0
  70. data/resources/joss/logo.png +0 -0
  71. data/resources/latex.template +485 -0
  72. data/resources/time.lua +8 -0
  73. data/roboneuro.gemspec +39 -0
  74. data/spec/auditor_spec.rb +22 -0
  75. data/spec/author_spec.rb +17 -0
  76. data/spec/bibtex_spec.rb +31 -0
  77. data/spec/orcid_validator_spec.rb +33 -0
  78. data/spec/processor_spec.rb +66 -0
  79. data/spec/review_spec.rb +12 -0
  80. data/spec/reviews_spec.rb +18 -0
  81. data/spec/spec_helper.rb +22 -0
  82. data/spec/whedon_spec.rb +93 -0
  83. metadata +386 -0
@@ -0,0 +1,66 @@
1
+ require_relative 'spec_helper'
2
+ require 'nokogiri'
3
+
4
+ describe Whedon::Processor do
5
+ subject(:paper) { Whedon::Paper.new(17, nil, 'fixtures/paper/paper.md') }
6
+ subject(:paper_with_funky_bib_path) { Whedon::Paper.new(17, nil, 'fixtures/paper/paper-bib.md') }
7
+
8
+ subject(:processor) { Whedon::Processor.new(17, File.read('fixtures/review_body.txt')) }
9
+
10
+ context "Without CURRENT_ISSUE and CURRENT_VOLUME in ENV" do
11
+ before do
12
+ ENV["JOURNAL_LAUNCH_DATE"] = Time.now.strftime('%F')
13
+ processor.paper = paper
14
+ end
15
+
16
+ after do
17
+ FileUtils.rm_rf("fixtures/paper/10.21105.joss.00017.crossref.xml")
18
+ end
19
+
20
+ it "should know how to initialize properly" do
21
+ expect(processor.review_issue_id).to eql(17)
22
+ expect(processor.current_volume).to eql(1)
23
+ expect(processor.current_issue).to eql(1)
24
+ end
25
+
26
+ it "should know how to find papers to be compiled" do
27
+ expect(processor.find_paper_paths('fixtures/test_paper').size).to eql(2)
28
+ expect(processor.find_paper_paths('fixtures/test_paper')).to include("fixtures/test_paper/paper.md")
29
+ end
30
+
31
+ it "should know how to find latex papers to be compiled" do
32
+ expect(processor.find_paper_paths('fixtures/latex_paper').size).to eql(1)
33
+ expect(processor.find_paper_paths('fixtures/latex_paper')).to include("fixtures/latex_paper/paper.tex")
34
+ end
35
+
36
+ it "should know how to compile Crossref XML" do
37
+ VCR.use_cassette('joss-lookup') do
38
+ ENV['JOURNAL_URL'] = 'http://joss.theoj.org'
39
+ expect(paper_with_funky_bib_path.bibtex_path).to eq("fixtures/paper/weird-bib-path.bib")
40
+ generated = processor.generate_crossref
41
+ expect(generated).to eql("fixtures/paper/10.21105.joss.00017.crossref.xml")
42
+ end
43
+ end
44
+ end
45
+
46
+ context "with CURRENT_ISSUE and CURRENT_VOLUME overridden" do
47
+ before do
48
+ ENV["JOURNAL_LAUNCH_DATE"] = Time.now.strftime('%F')
49
+ ENV["CURRENT_ISSUE"] = "12344"
50
+ ENV["CURRENT_VOLUME"] = "12"
51
+ processor.paper = paper
52
+ end
53
+
54
+ after do
55
+ FileUtils.rm_rf("fixtures/paper/10.21105.joss.00017.crossref.xml")
56
+ ENV["CURRENT_ISSUE"] = nil
57
+ ENV["CURRENT_VOLUME"] = nil
58
+ end
59
+
60
+ it "should know how to initialize properly" do
61
+ expect(processor.review_issue_id).to eql(17)
62
+ expect(processor.current_volume).to eql("12")
63
+ expect(processor.current_issue).to eql("12344")
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,12 @@
1
+ require_relative 'spec_helper'
2
+
3
+ describe Whedon::Review do
4
+
5
+ subject { Whedon::Review.new(17, ENV['REVIEW_REPOSITORY']) }
6
+
7
+ it "can should return the correct number of review issues" do
8
+ VCR.use_cassette('review') do
9
+ expect(subject.issue_body).to match(/Submitting author/)
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,18 @@
1
+ require_relative 'spec_helper'
2
+
3
+ describe Whedon::Reviews do
4
+
5
+ subject { Whedon::Reviews.new(ENV['REVIEW_REPOSITORY']) }
6
+
7
+ it "can return #review issues" do
8
+ VCR.use_cassette('reviews') do
9
+ expect(subject.list_current.first[1]).to have_key(:opened_at)
10
+ end
11
+ end
12
+
13
+ it "can should return the correct number of review issues" do
14
+ VCR.use_cassette('reviews') do
15
+ expect(subject.list_current.size).to eql(5)
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,22 @@
1
+ require "bundler/setup"
2
+ require "fileutils"
3
+ require "vcr"
4
+
5
+ VCR.configure do |config|
6
+ config.cassette_library_dir = "fixtures/vcr_cassettes"
7
+ config.hook_into :webmock
8
+ config.filter_sensitive_data("<GITHUB_TOKEN>") { ENV['GH_TOKEN'] }
9
+ end
10
+
11
+ require_relative "../lib/whedon"
12
+
13
+ # FIXME: This is kind of gross.
14
+ # Rugged needs there to be a Git repo present in the fixtures folder when
15
+ # running tests (spec/whedon_spec.rb#L11). Also, we're hard-coding the path
16
+ # to tmp/#{review_issue_id} so we need a fixture there.
17
+ Dir.mkdir('tmp') unless Dir.exist?('tmp')
18
+ FileUtils.rm_r('tmp/17') if Dir.exist?('tmp/17')
19
+ FileUtils.copy_entry('fixtures/paper', 'tmp/17')
20
+
21
+ # Any git repo will do (using the one from Whedon)
22
+ FileUtils.copy_entry('.git', 'tmp/17/.git')
@@ -0,0 +1,93 @@
1
+ require_relative 'spec_helper'
2
+
3
+ describe Whedon do
4
+
5
+ subject(:paper) { Whedon::Paper.new(17, nil, 'fixtures/paper/paper.md') }
6
+ subject(:paper_with_one_author) { Whedon::Paper.new(17, nil, 'fixtures/paper/paper-single-author.md') }
7
+ subject(:paper_with_harder_names) { Whedon::Paper.new(17, nil, 'fixtures/paper/paper-with-harder-names.md') }
8
+
9
+ it "should initialize properly" do
10
+ expect(paper.review_issue_id).to eql(17)
11
+ expect(paper.authors.size).to eql(2)
12
+ expect(paper.authors.first.affiliation).to eql('GitHub Inc., Disney Inc.')
13
+ expect(paper.paper_path).to eql('fixtures/paper/paper.md')
14
+ expect(paper.bibliography_path).to eql('paper.bib')
15
+ end
16
+
17
+ it "should know what the review_issue_url is" do
18
+ expect(paper.review_issue_url).to eql("https://github.com/#{ENV['REVIEW_REPOSITORY']}/issues/17")
19
+ end
20
+
21
+ it "should know how to generate joss_id" do
22
+ expect(paper.joss_id).to eql("joss.00017")
23
+ end
24
+
25
+ it "should know how to generate the formatted_doi" do
26
+ expect(paper.formatted_doi).to eql("10.21105/joss.00017")
27
+ end
28
+
29
+ it "should know how to generate the filename_doi" do
30
+ expect(paper.filename_doi).to eql("10.21105.joss.00017")
31
+ end
32
+
33
+ it "should know how to generate the joss_resource_url" do
34
+ expect(paper.joss_resource_url).to eql("#{ENV['JOURNAL_URL']}/papers/10.21105/joss.00017")
35
+ end
36
+
37
+ it "should know how to generate the paper#pdf_url" do
38
+ expect(paper.pdf_url).to eql("http://www.theoj.org/joss-papers-testing/joss.00017/10.21105.joss.00017.pdf")
39
+ end
40
+
41
+ it "should know what the paper#paper_org is" do
42
+ expect(paper.paper_org).to eql("openjournals")
43
+ end
44
+
45
+ it "should know what the paper#paper_repo is" do
46
+ expect(paper.paper_repo).to eql("joss-papers-testing")
47
+ end
48
+
49
+ it "should know what its tags are" do
50
+ expect(paper.tags).to eql(["example", "tags", "for the paper"])
51
+ end
52
+
53
+ it "should know how generate_authors" do
54
+ authors_xml = Nokogiri::XML(paper.crossref_authors)
55
+ expect(authors_xml.search('person_name').size).to eql(2)
56
+ expect(authors_xml.search('person_name[sequence="first"]').size).to eql(1)
57
+ expect(authors_xml.search('person_name[sequence="additional"]').size).to eql(1)
58
+ expect(authors_xml.xpath('//ORCID').first.text).to eql("http://orcid.org/0000-0002-3957-2474")
59
+ end
60
+
61
+ it "should know how to format citation strings for multi-author papers" do
62
+ expect(paper.authors.size).to eql(2)
63
+ expect(paper.authors.first.name).to eql('Arfon Smith')
64
+ expect(paper.citation_author).to eql("Smith et al.")
65
+ end
66
+
67
+ it "should know how to format citation strings for single-author papers" do
68
+ expect(paper_with_one_author.authors.size).to eql(1)
69
+ expect(paper_with_one_author.citation_author).to eql("Smith, A. M.")
70
+ end
71
+
72
+ it "should know how to format citation strings for multi-author papers" do
73
+ expect(paper_with_harder_names.authors.size).to eql(2)
74
+ expect(paper_with_harder_names.citation_author).to eql("Smith et al.")
75
+ expect(paper_with_harder_names.authors.last.last_name).to eq('van Dishoeck')
76
+ end
77
+
78
+ it "should fail to initialize when authors don't have affiliations" do
79
+ expect { Whedon::Paper.new(17, nil, 'fixtures/paper/paper-with-missing-affiliations.md') }.to raise_error("Author (Arfon M Smith) is missing affiliation")
80
+ end
81
+
82
+ it "should fail to initialize when title is missing" do
83
+ expect { Whedon::Paper.new(17, nil, 'fixtures/paper/paper_with_missing_title.md') }.to raise_error(/Paper YAML header is missing expected fields: title/)
84
+ end
85
+
86
+ it "should know how to generate the deposit_payload" do
87
+ VCR.use_cassette('review') do
88
+ %w{title tags languages authors doi archive_doi repository_address editor reviewers}.each do |attribute|
89
+ expect(paper_with_harder_names.deposit_payload['paper'][attribute].nil?).to be_falsey
90
+ end
91
+ end
92
+ end
93
+ end
metadata ADDED
@@ -0,0 +1,386 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: roboneuro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Agah Karakuzu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bibtex-ruby
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 6.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 6.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: dotenv
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: latex-decode
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: github-linguist
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.3'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: openjournals-nameable
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: octokit
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '4.20'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '4.20'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rest-client
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '1.8'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '1.8'
111
+ - !ruby/object:Gem::Dependency
112
+ name: redcarpet
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '3.3'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '3.3'
125
+ - !ruby/object:Gem::Dependency
126
+ name: tilt
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: thor
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.19'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.19'
153
+ - !ruby/object:Gem::Dependency
154
+ name: unicode
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.4.4
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.4.4
167
+ - !ruby/object:Gem::Dependency
168
+ name: bundler
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: rake
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '10.0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '10.0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: pry
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '0.10'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '0.10'
209
+ - !ruby/object:Gem::Dependency
210
+ name: rspec
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: '3.3'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: '3.3'
223
+ - !ruby/object:Gem::Dependency
224
+ name: vcr
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '6.0'
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - "~>"
235
+ - !ruby/object:Gem::Version
236
+ version: '6.0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: webmock
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: 3.11.2
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: 3.11.2
251
+ - !ruby/object:Gem::Dependency
252
+ name: nokogiri
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - '='
256
+ - !ruby/object:Gem::Version
257
+ version: 1.10.8
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - '='
263
+ - !ruby/object:Gem::Version
264
+ version: 1.10.8
265
+ description:
266
+ email:
267
+ - agahkarakuzu@gmail.com
268
+ executables:
269
+ - whedon
270
+ extensions: []
271
+ extra_rdoc_files: []
272
+ files:
273
+ - ".DS_Store"
274
+ - ".env-example"
275
+ - ".env.test"
276
+ - ".github/workflows/docker-image.yml"
277
+ - ".github/workflows/tests.yml"
278
+ - ".gitignore"
279
+ - Gemfile
280
+ - Gemfile.lock
281
+ - LICENSE
282
+ - README.md
283
+ - Rakefile
284
+ - bin/whedon
285
+ - fixtures/latex_paper/paper.tex
286
+ - fixtures/paper/10.21105.jcon.00017.crossref.xml
287
+ - fixtures/paper/crossref-metadata.yaml
288
+ - fixtures/paper/paper-bib.md
289
+ - fixtures/paper/paper-single-author.md
290
+ - fixtures/paper/paper-with-harder-names.md
291
+ - fixtures/paper/paper-with-missing-affiliations.md
292
+ - fixtures/paper/paper.bib
293
+ - fixtures/paper/paper.html
294
+ - fixtures/paper/paper.md
295
+ - fixtures/paper/paper.pdf
296
+ - fixtures/paper/paper.xml
297
+ - fixtures/paper/paper_with_missing_title.md
298
+ - fixtures/review_body.txt
299
+ - fixtures/test_paper/nested/paper.bib
300
+ - fixtures/test_paper/nested/paper.md
301
+ - fixtures/test_paper/paper.bib
302
+ - fixtures/test_paper/paper.md
303
+ - fixtures/vcr_cassettes/joss-lookup.yml
304
+ - fixtures/vcr_cassettes/review.yml
305
+ - fixtures/vcr_cassettes/reviews.yml
306
+ - lib/whedon.rb
307
+ - lib/whedon/auditor.rb
308
+ - lib/whedon/author.rb
309
+ - lib/whedon/bibtex_parser.rb
310
+ - lib/whedon/compilers.rb
311
+ - lib/whedon/github.rb
312
+ - lib/whedon/orcid_validator.rb
313
+ - lib/whedon/processor.rb
314
+ - lib/whedon/review.rb
315
+ - lib/whedon/reviews.rb
316
+ - lib/whedon/version.rb
317
+ - paperdraft.Dockerfile
318
+ - pkg/roboneuro-0.1.0.gem
319
+ - resources/.DS_Store
320
+ - resources/NeuroLibre/.DS_Store
321
+ - resources/NeuroLibre/aas-logo.png
322
+ - resources/NeuroLibre/apa.csl
323
+ - resources/NeuroLibre/defaults.yaml
324
+ - resources/NeuroLibre/latex.template
325
+ - resources/NeuroLibre/logo.png
326
+ - resources/NeuroLibre/logo_link.png
327
+ - resources/apa.csl
328
+ - resources/crossref.template
329
+ - resources/docker-defaults.yaml
330
+ - resources/docker-entrypoint.sh
331
+ - resources/jats.csl
332
+ - resources/jats.template
333
+ - resources/jose/apa.csl
334
+ - resources/jose/defaults.yaml
335
+ - resources/jose/latex.template
336
+ - resources/jose/logo.png
337
+ - resources/joss/aas-logo.png
338
+ - resources/joss/apa.csl
339
+ - resources/joss/defaults.yaml
340
+ - resources/joss/latex.template
341
+ - resources/joss/logo.png
342
+ - resources/latex.template
343
+ - resources/time.lua
344
+ - roboneuro.gemspec
345
+ - spec/auditor_spec.rb
346
+ - spec/author_spec.rb
347
+ - spec/bibtex_spec.rb
348
+ - spec/orcid_validator_spec.rb
349
+ - spec/processor_spec.rb
350
+ - spec/review_spec.rb
351
+ - spec/reviews_spec.rb
352
+ - spec/spec_helper.rb
353
+ - spec/whedon_spec.rb
354
+ homepage: https://github.com/neurolibre/roboneuro-gem
355
+ licenses:
356
+ - MIT
357
+ metadata: {}
358
+ post_install_message:
359
+ rdoc_options: []
360
+ require_paths:
361
+ - lib
362
+ required_ruby_version: !ruby/object:Gem::Requirement
363
+ requirements:
364
+ - - ">="
365
+ - !ruby/object:Gem::Version
366
+ version: '0'
367
+ required_rubygems_version: !ruby/object:Gem::Requirement
368
+ requirements:
369
+ - - ">="
370
+ - !ruby/object:Gem::Version
371
+ version: '0'
372
+ requirements: []
373
+ rubygems_version: 3.0.9
374
+ signing_key:
375
+ specification_version: 4
376
+ summary: A collection of command-line utilities to manage NeuroLibre submissions.
377
+ test_files:
378
+ - spec/auditor_spec.rb
379
+ - spec/author_spec.rb
380
+ - spec/bibtex_spec.rb
381
+ - spec/orcid_validator_spec.rb
382
+ - spec/processor_spec.rb
383
+ - spec/review_spec.rb
384
+ - spec/reviews_spec.rb
385
+ - spec/spec_helper.rb
386
+ - spec/whedon_spec.rb