tabular-text 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,45 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4
- gem 'rails', '4.0.0'
5
-
6
- # Use sqlite3 as the database for Active Record
7
- gem 'sqlite3'
8
-
9
- # Use SCSS for stylesheets
10
- gem 'sass-rails', '~> 4.0.0'
11
-
12
- # Use Uglifier as compressor for JavaScript assets
13
- gem 'uglifier', '>= 1.3.0'
14
-
15
- # Use CoffeeScript for .js.coffee assets and views
16
- gem 'coffee-rails', '~> 4.0.0'
17
-
18
- # See https://github.com/sstephenson/execjs#readme for more supported runtimes
19
- # gem 'therubyracer', platforms: :ruby
20
-
21
- # Use jquery as the JavaScript library
22
- gem 'jquery-rails'
23
-
24
- # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
25
- gem 'turbolinks'
26
-
27
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
28
- gem 'jbuilder', '~> 1.2'
29
-
30
- group :doc do
31
- # bundle exec rake doc:rails generates the API under doc/api.
32
- gem 'sdoc', require: false
33
- end
34
-
35
- # Use ActiveModel has_secure_password
36
- # gem 'bcrypt-ruby', '~> 3.0.0'
37
-
38
- # Use unicorn as the app server
39
- # gem 'unicorn'
40
-
41
- # Use Capistrano for deployment
42
- # gem 'capistrano', group: :development
43
-
44
- # Use debugger
45
- # gem 'debugger', group: [:development, :test]
@@ -1,119 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- actionmailer (4.0.0)
5
- actionpack (= 4.0.0)
6
- mail (~> 2.5.3)
7
- actionpack (4.0.0)
8
- activesupport (= 4.0.0)
9
- builder (~> 3.1.0)
10
- erubis (~> 2.7.0)
11
- rack (~> 1.5.2)
12
- rack-test (~> 0.6.2)
13
- activemodel (4.0.0)
14
- activesupport (= 4.0.0)
15
- builder (~> 3.1.0)
16
- activerecord (4.0.0)
17
- activemodel (= 4.0.0)
18
- activerecord-deprecated_finders (~> 1.0.2)
19
- activesupport (= 4.0.0)
20
- arel (~> 4.0.0)
21
- activerecord-deprecated_finders (1.0.3)
22
- activesupport (4.0.0)
23
- i18n (~> 0.6, >= 0.6.4)
24
- minitest (~> 4.2)
25
- multi_json (~> 1.3)
26
- thread_safe (~> 0.1)
27
- tzinfo (~> 0.3.37)
28
- arel (4.0.0)
29
- atomic (1.1.13)
30
- builder (3.1.4)
31
- coffee-rails (4.0.0)
32
- coffee-script (>= 2.2.0)
33
- railties (>= 4.0.0.beta, < 5.0)
34
- coffee-script (2.2.0)
35
- coffee-script-source
36
- execjs
37
- coffee-script-source (1.6.3)
38
- erubis (2.7.0)
39
- execjs (2.0.1)
40
- hike (1.2.3)
41
- i18n (0.6.5)
42
- jbuilder (1.5.1)
43
- activesupport (>= 3.0.0)
44
- multi_json (>= 1.2.0)
45
- jquery-rails (3.0.4)
46
- railties (>= 3.0, < 5.0)
47
- thor (>= 0.14, < 2.0)
48
- json (1.8.0)
49
- mail (2.5.4)
50
- mime-types (~> 1.16)
51
- treetop (~> 1.4.8)
52
- mime-types (1.24)
53
- minitest (4.7.5)
54
- multi_json (1.7.9)
55
- polyglot (0.3.3)
56
- rack (1.5.2)
57
- rack-test (0.6.2)
58
- rack (>= 1.0)
59
- rails (4.0.0)
60
- actionmailer (= 4.0.0)
61
- actionpack (= 4.0.0)
62
- activerecord (= 4.0.0)
63
- activesupport (= 4.0.0)
64
- bundler (>= 1.3.0, < 2.0)
65
- railties (= 4.0.0)
66
- sprockets-rails (~> 2.0.0)
67
- railties (4.0.0)
68
- actionpack (= 4.0.0)
69
- activesupport (= 4.0.0)
70
- rake (>= 0.8.7)
71
- thor (>= 0.18.1, < 2.0)
72
- rake (10.1.0)
73
- rdoc (3.12.2)
74
- json (~> 1.4)
75
- sass (3.2.10)
76
- sass-rails (4.0.0)
77
- railties (>= 4.0.0.beta, < 5.0)
78
- sass (>= 3.1.10)
79
- sprockets-rails (~> 2.0.0)
80
- sdoc (0.3.20)
81
- json (>= 1.1.3)
82
- rdoc (~> 3.10)
83
- sprockets (2.10.0)
84
- hike (~> 1.2)
85
- multi_json (~> 1.0)
86
- rack (~> 1.0)
87
- tilt (~> 1.1, != 1.3.0)
88
- sprockets-rails (2.0.0)
89
- actionpack (>= 3.0)
90
- activesupport (>= 3.0)
91
- sprockets (~> 2.8)
92
- sqlite3 (1.3.8)
93
- thor (0.18.1)
94
- thread_safe (0.1.2)
95
- atomic
96
- tilt (1.4.1)
97
- treetop (1.4.15)
98
- polyglot
99
- polyglot (>= 0.3.1)
100
- turbolinks (1.3.0)
101
- coffee-rails
102
- tzinfo (0.3.37)
103
- uglifier (2.2.1)
104
- execjs (>= 0.3.0)
105
- multi_json (~> 1.0, >= 1.0.2)
106
-
107
- PLATFORMS
108
- ruby
109
-
110
- DEPENDENCIES
111
- coffee-rails (~> 4.0.0)
112
- jbuilder (~> 1.2)
113
- jquery-rails
114
- rails (= 4.0.0)
115
- sass-rails (~> 4.0.0)
116
- sdoc
117
- sqlite3
118
- turbolinks
119
- uglifier (>= 1.3.0)
@@ -1,16 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file.
9
- //
10
- // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require jquery
14
- //= require jquery_ujs
15
- //= require turbolinks
16
- //= require_tree .
@@ -1,3 +0,0 @@
1
- abuilder.line do |l|
2
- l.field @content
3
- end
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
- load Gem.bin_path('bundler', 'bundle')
@@ -1,12 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure your secret_key_base is kept private
11
- # if you're sharing your code publicly.
12
- Dummy::Application.config.secret_key_base = '751401268fb6bcd85e4baca98af8e371e5e4cb907b3a9c198e005c7a7189e3be91af4c9501b1aab24e1219558157789034f07d75f19f03858c56eb6696808010'
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,16 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended that you check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(version: 0) do
15
-
16
- end
@@ -1,3 +0,0 @@
1
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
-
4
- APP_PATH = File.expand_path('../../config/application', __FILE__)
5
- require File.expand_path('../../config/boot', __FILE__)
6
- require 'rails/commands'