tabular-text 0.0.2 → 0.1.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 (72) hide show
  1. checksums.yaml +5 -5
  2. data/lib/tabular-text/handler.rb +2 -2
  3. data/lib/tabular-text/version.rb +1 -1
  4. data/test/dummy/{README.rdoc → README.md} +1 -5
  5. data/test/dummy/Rakefile +2 -2
  6. data/test/dummy/app/assets/config/manifest.js +2 -0
  7. data/test/dummy/app/assets/stylesheets/application.css +7 -5
  8. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  9. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  10. data/test/dummy/app/controllers/application_controller.rb +0 -3
  11. data/test/dummy/app/javascript/channels/consumer.js +6 -0
  12. data/test/dummy/app/javascript/channels/index.js +5 -0
  13. data/test/dummy/app/javascript/packs/application.js +17 -0
  14. data/test/dummy/app/jobs/application_job.rb +7 -0
  15. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  16. data/test/dummy/app/models/application_record.rb +3 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  18. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  19. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  20. data/test/dummy/bin/rails +1 -1
  21. data/test/dummy/bin/setup +36 -0
  22. data/test/dummy/bin/yarn +11 -0
  23. data/test/dummy/config.ru +2 -1
  24. data/test/dummy/config/application.rb +9 -16
  25. data/test/dummy/config/boot.rb +2 -4
  26. data/test/dummy/config/cable.yml +10 -0
  27. data/test/dummy/config/credentials.yml.enc +1 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +2 -2
  30. data/test/dummy/config/environments/development.rb +40 -4
  31. data/test/dummy/config/environments/production.rb +64 -32
  32. data/test/dummy/config/environments/test.rb +22 -9
  33. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  34. data/test/dummy/config/initializers/assets.rb +14 -0
  35. data/test/dummy/config/initializers/content_security_policy.rb +30 -0
  36. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  37. data/test/dummy/config/initializers/mime_types.rb +0 -1
  38. data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
  39. data/test/dummy/config/locales/en.yml +11 -1
  40. data/test/dummy/config/master.key +1 -0
  41. data/test/dummy/config/puma.rb +38 -0
  42. data/test/dummy/config/routes.rb +1 -55
  43. data/test/dummy/config/spring.rb +6 -0
  44. data/test/dummy/config/storage.yml +34 -0
  45. data/test/dummy/db/seeds.rb +3 -3
  46. data/test/dummy/db/test.sqlite3 +0 -0
  47. data/test/dummy/log/test.log +1066 -202
  48. data/test/dummy/package.json +11 -0
  49. data/test/dummy/public/404.html +24 -15
  50. data/test/dummy/public/422.html +24 -15
  51. data/test/dummy/public/500.html +23 -14
  52. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  53. data/test/dummy/public/apple-touch-icon.png +0 -0
  54. data/test/dummy/public/robots.txt +1 -5
  55. data/test/dummy/test/application_system_test_case.rb +5 -0
  56. data/test/dummy/test/channels/application_cable/connection_test.rb +11 -0
  57. data/test/dummy/test/test_helper.rb +4 -6
  58. data/test/dummy/tmp/development_secret.txt +1 -0
  59. data/test/integration/navigation_test.rb +6 -6
  60. data/test/test_helper.rb +2 -1
  61. metadata +104 -66
  62. data/test/dummy/Gemfile +0 -45
  63. data/test/dummy/Gemfile.lock +0 -119
  64. data/test/dummy/app/assets/javascripts/application.js +0 -16
  65. data/test/dummy/app/views/home/index.txt.tab +0 -3
  66. data/test/dummy/bin/bundle +0 -3
  67. data/test/dummy/config/initializers/secret_token.rb +0 -12
  68. data/test/dummy/config/initializers/session_store.rb +0 -3
  69. data/test/dummy/db/development.sqlite3 +0 -0
  70. data/test/dummy/db/schema.rb +0 -16
  71. data/test/dummy/log/development.log +0 -3
  72. data/test/dummy/script/rails +0 -6
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {
5
+ "@rails/ujs": "^6.0.0",
6
+ "turbolinks": "^5.2.0",
7
+ "@rails/activestorage": "^6.0.0",
8
+ "@rails/actioncable": "^6.0.0"
9
+ },
10
+ "version": "0.1.0"
11
+ }
@@ -2,17 +2,23 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
5
6
  <style>
6
- body {
7
+ .rails-default-error-page {
7
8
  background-color: #EFEFEF;
8
9
  color: #2E2F30;
9
10
  text-align: center;
10
11
  font-family: arial, sans-serif;
12
+ margin: 0;
11
13
  }
12
14
 
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
16
22
  border: 1px solid #CCC;
17
23
  border-right-color: #999;
18
24
  border-left-color: #999;
@@ -21,38 +27,41 @@
21
27
  border-top-left-radius: 9px;
22
28
  border-top-right-radius: 9px;
23
29
  background-color: white;
24
- padding: 7px 4em 0 4em;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
25
32
  }
26
33
 
27
- h1 {
34
+ .rails-default-error-page h1 {
28
35
  font-size: 100%;
29
36
  color: #730E15;
30
37
  line-height: 1.5em;
31
38
  }
32
39
 
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
37
43
  background-color: #F7F7F7;
38
44
  border: 1px solid #CCC;
39
45
  border-right-color: #999;
46
+ border-left-color: #999;
40
47
  border-bottom-color: #999;
41
48
  border-bottom-left-radius: 4px;
42
49
  border-bottom-right-radius: 4px;
43
50
  border-top-color: #DADADA;
44
51
  color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
46
53
  }
47
54
  </style>
48
55
  </head>
49
56
 
50
- <body>
57
+ <body class="rails-default-error-page">
51
58
  <!-- This file lives in public/404.html -->
52
59
  <div class="dialog">
53
- <h1>The page you were looking for doesn't exist.</h1>
54
- <p>You may have mistyped the address or the page may have moved.</p>
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
55
65
  </div>
56
- <p>If you are the application owner check the logs for more information.</p>
57
66
  </body>
58
67
  </html>
@@ -2,17 +2,23 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
5
6
  <style>
6
- body {
7
+ .rails-default-error-page {
7
8
  background-color: #EFEFEF;
8
9
  color: #2E2F30;
9
10
  text-align: center;
10
11
  font-family: arial, sans-serif;
12
+ margin: 0;
11
13
  }
12
14
 
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
16
22
  border: 1px solid #CCC;
17
23
  border-right-color: #999;
18
24
  border-left-color: #999;
@@ -21,38 +27,41 @@
21
27
  border-top-left-radius: 9px;
22
28
  border-top-right-radius: 9px;
23
29
  background-color: white;
24
- padding: 7px 4em 0 4em;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
25
32
  }
26
33
 
27
- h1 {
34
+ .rails-default-error-page h1 {
28
35
  font-size: 100%;
29
36
  color: #730E15;
30
37
  line-height: 1.5em;
31
38
  }
32
39
 
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
37
43
  background-color: #F7F7F7;
38
44
  border: 1px solid #CCC;
39
45
  border-right-color: #999;
46
+ border-left-color: #999;
40
47
  border-bottom-color: #999;
41
48
  border-bottom-left-radius: 4px;
42
49
  border-bottom-right-radius: 4px;
43
50
  border-top-color: #DADADA;
44
51
  color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
46
53
  }
47
54
  </style>
48
55
  </head>
49
56
 
50
- <body>
57
+ <body class="rails-default-error-page">
51
58
  <!-- This file lives in public/422.html -->
52
59
  <div class="dialog">
53
- <h1>The change you wanted was rejected.</h1>
54
- <p>Maybe you tried to change something you didn't have access to.</p>
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
55
65
  </div>
56
- <p>If you are the application owner check the logs for more information.</p>
57
66
  </body>
58
67
  </html>
@@ -2,17 +2,23 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
5
6
  <style>
6
- body {
7
+ .rails-default-error-page {
7
8
  background-color: #EFEFEF;
8
9
  color: #2E2F30;
9
10
  text-align: center;
10
11
  font-family: arial, sans-serif;
12
+ margin: 0;
11
13
  }
12
14
 
13
- div.dialog {
14
- width: 25em;
15
- margin: 4em auto 0 auto;
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
16
22
  border: 1px solid #CCC;
17
23
  border-right-color: #999;
18
24
  border-left-color: #999;
@@ -21,37 +27,40 @@
21
27
  border-top-left-radius: 9px;
22
28
  border-top-right-radius: 9px;
23
29
  background-color: white;
24
- padding: 7px 4em 0 4em;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
25
32
  }
26
33
 
27
- h1 {
34
+ .rails-default-error-page h1 {
28
35
  font-size: 100%;
29
36
  color: #730E15;
30
37
  line-height: 1.5em;
31
38
  }
32
39
 
33
- body > p {
34
- width: 33em;
35
- margin: 0 auto 1em;
36
- padding: 1em 0;
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
37
43
  background-color: #F7F7F7;
38
44
  border: 1px solid #CCC;
39
45
  border-right-color: #999;
46
+ border-left-color: #999;
40
47
  border-bottom-color: #999;
41
48
  border-bottom-left-radius: 4px;
42
49
  border-bottom-right-radius: 4px;
43
50
  border-top-color: #DADADA;
44
51
  color: #666;
45
- box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
46
53
  }
47
54
  </style>
48
55
  </head>
49
56
 
50
- <body>
57
+ <body class="rails-default-error-page">
51
58
  <!-- This file lives in public/500.html -->
52
59
  <div class="dialog">
53
- <h1>We're sorry, but something went wrong.</h1>
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
54
64
  </div>
55
- <p>If you are the application owner check the logs for more information.</p>
56
65
  </body>
57
66
  </html>
File without changes
@@ -1,5 +1 @@
1
- # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
- #
3
- # To ban all spiders from the entire site uncomment the next two lines:
4
- # User-agent: *
5
- # Disallow: /
1
+ # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
@@ -0,0 +1,5 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
4
+ driven_by :selenium, using: :chrome, screen_size: [1400, 1400]
5
+ end
@@ -0,0 +1,11 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase
4
+ # test "connects with cookies" do
5
+ # cookies.signed[:user_id] = 42
6
+ #
7
+ # connect
8
+ #
9
+ # assert_equal connection.user_id, "42"
10
+ # end
11
+ end
@@ -1,14 +1,12 @@
1
- ENV["RAILS_ENV"] ||= "test"
2
- require File.expand_path('../../config/environment', __FILE__)
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require_relative '../config/environment'
3
3
  require 'rails/test_help'
4
4
 
5
5
  class ActiveSupport::TestCase
6
- ActiveRecord::Migration.check_pending!
6
+ # Run tests in parallel with specified workers
7
+ parallelize(workers: :number_of_processors)
7
8
 
8
9
  # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
9
- #
10
- # Note: You'll currently still have to declare fixtures explicitly in integration tests
11
- # -- they do not yet inherit this setting
12
10
  fixtures :all
13
11
 
14
12
  # Add more helper methods to be used by all tests here...
@@ -0,0 +1 @@
1
+ 119b9d90e8cd11a1ada161f327ffd53f49f8cd8c7a020198cc5d8b4abf398c0a31c0aa9cb8543acaf9704ade14d2317658b458cc14d84bfed4344822f3d1dacb
@@ -1,24 +1,24 @@
1
1
  require 'test_helper'
2
2
 
3
- class NavigationTest < ActiveSupport::IntegrationCase
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
4
  setup do
5
- visit root_path(format: 'text')
5
+ get root_path(format: :text)
6
6
  end
7
7
 
8
8
  test 'renders using tabular' do
9
- assert_match /tabular-text/, page.body
9
+ assert_match(/tabular-text/, response.body)
10
10
  end
11
11
 
12
12
  test 'renders as text/plain' do
13
- assert_match /text\/plain/, headers['Content-Type']
13
+ assert_match(/text\/plain/, headers['Content-Type'])
14
14
  end
15
15
 
16
16
  test 'renders as attachment' do
17
- assert_equal 'attachment; filename="tabular.txt"',
17
+ assert_equal 'attachment; filename="tabular.txt"; filename*=UTF-8\'\'tabular.txt',
18
18
  headers['Content-Disposition']
19
19
  end
20
20
 
21
21
  def headers
22
- page.response_headers
22
+ response.headers
23
23
  end
24
24
  end
@@ -1,7 +1,8 @@
1
1
  # Configure Rails Environment
2
2
  ENV["RAILS_ENV"] = "test"
3
+ ENV["BUNDLE_GEMFILE"] = File.expand_path("./dummy/Gemfile", __dir__)
3
4
 
4
- require ::File.expand_path('../dummy/config/environment', __FILE__)
5
+ require_relative "dummy/config/environment"
5
6
  require "rails/test_help"
6
7
 
7
8
  Rails.backtrace_cleaner.remove_silencers!
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabular-text
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elomar Souza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-29 00:00:00.000000000 Z
11
+ date: 2020-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.2'
19
+ version: '6.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '3.2'
26
+ version: '6.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: capybara
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: |-
@@ -61,60 +61,79 @@ executables: []
61
61
  extensions: []
62
62
  extra_rdoc_files: []
63
63
  files:
64
+ - MIT-LICENSE
65
+ - README.rdoc
66
+ - Rakefile
67
+ - lib/tabular-text.rb
64
68
  - lib/tabular-text/builder.rb
65
69
  - lib/tabular-text/field.rb
66
70
  - lib/tabular-text/handler.rb
67
71
  - lib/tabular-text/line.rb
68
72
  - lib/tabular-text/version.rb
69
- - lib/tabular-text.rb
70
73
  - lib/tasks/tabular-text_tasks.rake
71
- - MIT-LICENSE
72
- - Rakefile
73
- - README.rdoc
74
- - test/dummy/app/assets/javascripts/application.js
74
+ - test/dummy/README.md
75
+ - test/dummy/Rakefile
76
+ - test/dummy/app/assets/config/manifest.js
75
77
  - test/dummy/app/assets/stylesheets/application.css
78
+ - test/dummy/app/channels/application_cable/channel.rb
79
+ - test/dummy/app/channels/application_cable/connection.rb
76
80
  - test/dummy/app/controllers/application_controller.rb
77
81
  - test/dummy/app/controllers/home_controller.rb
78
82
  - test/dummy/app/helpers/application_helper.rb
83
+ - test/dummy/app/javascript/channels/consumer.js
84
+ - test/dummy/app/javascript/channels/index.js
85
+ - test/dummy/app/javascript/packs/application.js
86
+ - test/dummy/app/jobs/application_job.rb
87
+ - test/dummy/app/mailers/application_mailer.rb
88
+ - test/dummy/app/models/application_record.rb
79
89
  - test/dummy/app/views/home/index.text.tab
80
- - test/dummy/app/views/home/index.txt.tab
81
90
  - test/dummy/app/views/layouts/application.html.erb
82
- - test/dummy/bin/bundle
91
+ - test/dummy/app/views/layouts/mailer.html.erb
92
+ - test/dummy/app/views/layouts/mailer.text.erb
83
93
  - test/dummy/bin/rails
84
94
  - test/dummy/bin/rake
95
+ - test/dummy/bin/setup
96
+ - test/dummy/bin/yarn
97
+ - test/dummy/config.ru
85
98
  - test/dummy/config/application.rb
86
99
  - test/dummy/config/boot.rb
100
+ - test/dummy/config/cable.yml
101
+ - test/dummy/config/credentials.yml.enc
102
+ - test/dummy/config/database.yml
87
103
  - test/dummy/config/environment.rb
88
104
  - test/dummy/config/environments/development.rb
89
105
  - test/dummy/config/environments/production.rb
90
106
  - test/dummy/config/environments/test.rb
107
+ - test/dummy/config/initializers/application_controller_renderer.rb
108
+ - test/dummy/config/initializers/assets.rb
91
109
  - test/dummy/config/initializers/backtrace_silencers.rb
110
+ - test/dummy/config/initializers/content_security_policy.rb
111
+ - test/dummy/config/initializers/cookies_serializer.rb
92
112
  - test/dummy/config/initializers/filter_parameter_logging.rb
93
113
  - test/dummy/config/initializers/inflections.rb
94
114
  - test/dummy/config/initializers/mime_types.rb
95
- - test/dummy/config/initializers/secret_token.rb
96
- - test/dummy/config/initializers/session_store.rb
97
115
  - test/dummy/config/initializers/wrap_parameters.rb
98
116
  - test/dummy/config/locales/en.yml
117
+ - test/dummy/config/master.key
118
+ - test/dummy/config/puma.rb
99
119
  - test/dummy/config/routes.rb
100
- - test/dummy/config.ru
101
- - test/dummy/db/development.sqlite3
102
- - test/dummy/db/schema.rb
120
+ - test/dummy/config/spring.rb
121
+ - test/dummy/config/storage.yml
103
122
  - test/dummy/db/seeds.rb
104
123
  - test/dummy/db/test.sqlite3
105
- - test/dummy/Gemfile
106
- - test/dummy/Gemfile.lock
107
- - test/dummy/log/development.log
108
124
  - test/dummy/log/test.log
125
+ - test/dummy/package.json
109
126
  - test/dummy/public/404.html
110
127
  - test/dummy/public/422.html
111
128
  - test/dummy/public/500.html
129
+ - test/dummy/public/apple-touch-icon-precomposed.png
130
+ - test/dummy/public/apple-touch-icon.png
112
131
  - test/dummy/public/favicon.ico
113
132
  - test/dummy/public/robots.txt
114
- - test/dummy/Rakefile
115
- - test/dummy/README.rdoc
116
- - test/dummy/script/rails
133
+ - test/dummy/test/application_system_test_case.rb
134
+ - test/dummy/test/channels/application_cable/connection_test.rb
117
135
  - test/dummy/test/test_helper.rb
136
+ - test/dummy/tmp/development_secret.txt
118
137
  - test/integration/navigation_test.rb
119
138
  - test/support/integration_case.rb
120
139
  - test/tabular-text_test.rb
@@ -123,7 +142,8 @@ files:
123
142
  - test/unit/field_test.rb
124
143
  - test/unit/line_test.rb
125
144
  homepage: http://github.com/elomar/tabular-text
126
- licenses: []
145
+ licenses:
146
+ - MIT
127
147
  metadata: {}
128
148
  post_install_message:
129
149
  rdoc_options: []
@@ -131,69 +151,87 @@ require_paths:
131
151
  - lib
132
152
  required_ruby_version: !ruby/object:Gem::Requirement
133
153
  requirements:
134
- - - '>='
154
+ - - ">="
135
155
  - !ruby/object:Gem::Version
136
156
  version: '0'
137
157
  required_rubygems_version: !ruby/object:Gem::Requirement
138
158
  requirements:
139
- - - '>='
159
+ - - ">="
140
160
  - !ruby/object:Gem::Version
141
161
  version: '0'
142
162
  requirements: []
143
- rubyforge_project:
144
- rubygems_version: 2.0.3
163
+ rubygems_version: 3.1.4
145
164
  signing_key:
146
165
  specification_version: 4
147
166
  summary: Generate position-based text files
148
167
  test_files:
149
- - test/dummy/app/assets/javascripts/application.js
150
- - test/dummy/app/assets/stylesheets/application.css
168
+ - test/unit/builder_test.rb
169
+ - test/unit/field_test.rb
170
+ - test/unit/line_test.rb
171
+ - test/dummy/app/mailers/application_mailer.rb
172
+ - test/dummy/app/models/application_record.rb
173
+ - test/dummy/app/javascript/packs/application.js
174
+ - test/dummy/app/javascript/channels/index.js
175
+ - test/dummy/app/javascript/channels/consumer.js
176
+ - test/dummy/app/jobs/application_job.rb
151
177
  - test/dummy/app/controllers/application_controller.rb
152
178
  - test/dummy/app/controllers/home_controller.rb
153
- - test/dummy/app/helpers/application_helper.rb
154
179
  - test/dummy/app/views/home/index.text.tab
155
- - test/dummy/app/views/home/index.txt.tab
156
180
  - test/dummy/app/views/layouts/application.html.erb
157
- - test/dummy/bin/bundle
158
- - test/dummy/bin/rails
181
+ - test/dummy/app/views/layouts/mailer.html.erb
182
+ - test/dummy/app/views/layouts/mailer.text.erb
183
+ - test/dummy/app/assets/config/manifest.js
184
+ - test/dummy/app/assets/stylesheets/application.css
185
+ - test/dummy/app/helpers/application_helper.rb
186
+ - test/dummy/app/channels/application_cable/connection.rb
187
+ - test/dummy/app/channels/application_cable/channel.rb
188
+ - test/dummy/test/application_system_test_case.rb
189
+ - test/dummy/test/test_helper.rb
190
+ - test/dummy/test/channels/application_cable/connection_test.rb
159
191
  - test/dummy/bin/rake
160
- - test/dummy/config/application.rb
161
- - test/dummy/config/boot.rb
162
- - test/dummy/config/environment.rb
163
- - test/dummy/config/environments/development.rb
192
+ - test/dummy/bin/setup
193
+ - test/dummy/bin/yarn
194
+ - test/dummy/bin/rails
195
+ - test/dummy/config/routes.rb
196
+ - test/dummy/config/locales/en.yml
197
+ - test/dummy/config/cable.yml
164
198
  - test/dummy/config/environments/production.rb
199
+ - test/dummy/config/environments/development.rb
165
200
  - test/dummy/config/environments/test.rb
201
+ - test/dummy/config/spring.rb
202
+ - test/dummy/config/master.key
203
+ - test/dummy/config/environment.rb
204
+ - test/dummy/config/storage.yml
205
+ - test/dummy/config/application.rb
206
+ - test/dummy/config/puma.rb
207
+ - test/dummy/config/credentials.yml.enc
208
+ - test/dummy/config/database.yml
209
+ - test/dummy/config/boot.rb
210
+ - test/dummy/config/initializers/application_controller_renderer.rb
166
211
  - test/dummy/config/initializers/backtrace_silencers.rb
167
- - test/dummy/config/initializers/filter_parameter_logging.rb
168
- - test/dummy/config/initializers/inflections.rb
169
212
  - test/dummy/config/initializers/mime_types.rb
170
- - test/dummy/config/initializers/secret_token.rb
171
- - test/dummy/config/initializers/session_store.rb
213
+ - test/dummy/config/initializers/filter_parameter_logging.rb
172
214
  - test/dummy/config/initializers/wrap_parameters.rb
173
- - test/dummy/config/locales/en.yml
174
- - test/dummy/config/routes.rb
215
+ - test/dummy/config/initializers/assets.rb
216
+ - test/dummy/config/initializers/cookies_serializer.rb
217
+ - test/dummy/config/initializers/content_security_policy.rb
218
+ - test/dummy/config/initializers/inflections.rb
175
219
  - test/dummy/config.ru
176
- - test/dummy/db/development.sqlite3
177
- - test/dummy/db/schema.rb
178
- - test/dummy/db/seeds.rb
179
- - test/dummy/db/test.sqlite3
180
- - test/dummy/Gemfile
181
- - test/dummy/Gemfile.lock
182
- - test/dummy/log/development.log
183
- - test/dummy/log/test.log
184
- - test/dummy/public/404.html
220
+ - test/dummy/README.md
221
+ - test/dummy/Rakefile
222
+ - test/dummy/public/favicon.ico
185
223
  - test/dummy/public/422.html
224
+ - test/dummy/public/apple-touch-icon.png
186
225
  - test/dummy/public/500.html
187
- - test/dummy/public/favicon.ico
226
+ - test/dummy/public/404.html
227
+ - test/dummy/public/apple-touch-icon-precomposed.png
188
228
  - test/dummy/public/robots.txt
189
- - test/dummy/Rakefile
190
- - test/dummy/README.rdoc
191
- - test/dummy/script/rails
192
- - test/dummy/test/test_helper.rb
229
+ - test/dummy/package.json
230
+ - test/dummy/db/seeds.rb
231
+ - test/dummy/db/test.sqlite3
232
+ - test/dummy/log/test.log
233
+ - test/dummy/tmp/development_secret.txt
193
234
  - test/integration/navigation_test.rb
194
235
  - test/support/integration_case.rb
195
236
  - test/tabular-text_test.rb
196
237
  - test/test_helper.rb
197
- - test/unit/builder_test.rb
198
- - test/unit/field_test.rb
199
- - test/unit/line_test.rb