prototypical 0.0.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 (54) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/lib/prototypical.rb +10 -0
  5. data/lib/prototypical/configuration.rb +13 -0
  6. data/lib/prototypical/controller.rb +18 -0
  7. data/lib/prototypical/railtie.rb +20 -0
  8. data/lib/prototypical/version.rb +3 -0
  9. data/lib/tasks/prototypical_tasks.rake +4 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/controllers/static_controller.rb +16 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/prototypes/static/disabled_prototype.html.erb +1 -0
  18. data/test/dummy/app/prototypes/static/enabled_prototype.html.erb +1 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +13 -0
  20. data/test/dummy/app/views/static/disabled_prototype.html.erb +1 -0
  21. data/test/dummy/app/views/static/enabled_prototype.html.erb +1 -0
  22. data/test/dummy/app/views/static/home.html.erb +0 -0
  23. data/test/dummy/bin/bundle +3 -0
  24. data/test/dummy/bin/rails +4 -0
  25. data/test/dummy/bin/rake +4 -0
  26. data/test/dummy/bin/setup +29 -0
  27. data/test/dummy/config.ru +4 -0
  28. data/test/dummy/config/application.rb +29 -0
  29. data/test/dummy/config/boot.rb +5 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +38 -0
  32. data/test/dummy/config/environments/production.rb +76 -0
  33. data/test/dummy/config/environments/test.rb +42 -0
  34. data/test/dummy/config/initializers/assets.rb +11 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  37. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/test/dummy/config/initializers/inflections.rb +16 -0
  39. data/test/dummy/config/initializers/mime_types.rb +4 -0
  40. data/test/dummy/config/initializers/session_store.rb +3 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  42. data/test/dummy/config/locales/en.yml +23 -0
  43. data/test/dummy/config/routes.rb +61 -0
  44. data/test/dummy/config/secrets.yml +22 -0
  45. data/test/dummy/log/test.log +1574 -0
  46. data/test/dummy/public/404.html +67 -0
  47. data/test/dummy/public/422.html +67 -0
  48. data/test/dummy/public/500.html +66 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/integration/root_test.rb +20 -0
  51. data/test/lib/prototypical/controller_test.rb +73 -0
  52. data/test/prototypical_test.rb +7 -0
  53. data/test/test_helper.rb +20 -0
  54. metadata +155 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
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>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
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>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
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>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,20 @@
1
+ require 'test_helper'
2
+
3
+ class RootTest < ActionDispatch::IntegrationTest
4
+ it 'should work' do
5
+ get '/'
6
+ assert_response :success
7
+ end
8
+
9
+ it 'should display a prototype if there is one and prototyping is enabled' do
10
+ get '/enabled_prototype'
11
+ assert_response :success
12
+ assert_match /Prototype enabled/, response.body
13
+ end
14
+
15
+ it 'should not display a prototype if prototyping is disabled' do
16
+ get '/disabled_prototype'
17
+ assert_response :success
18
+ assert_match /Prototype disabled/, response.body
19
+ end
20
+ end
@@ -0,0 +1,73 @@
1
+ require 'test_helper'
2
+
3
+ require 'prototypical/controller'
4
+
5
+ module Prototypical
6
+ class ControllerTest < ActiveSupport::TestCase
7
+ class StubController
8
+ def self.before_action(action); end
9
+ end
10
+
11
+ describe '#enable_prototyping' do
12
+ setup do
13
+ StubController.send :include, Controller
14
+
15
+ @controller = StubController.new
16
+
17
+ @expected_view_path = Rails.root.join('app/prototypes')
18
+ end
19
+
20
+ describe 'when Prototypical.enabled? is true' do
21
+ setup { Prototypical.stubs(:enabled?).returns(true) }
22
+
23
+ it 'should append the protypical view path' do
24
+ @controller
25
+ .expects(:prepend_view_path)
26
+ .with(@expected_view_path)
27
+
28
+ @controller.enable_prototyping
29
+ end
30
+ end
31
+
32
+ describe 'when Prototypical.enabled? is false' do
33
+ setup { Prototypical.stubs(:enabled?).returns(false) }
34
+
35
+ it 'should do nothing' do
36
+ @controller
37
+ .expects(:prepend_view_path)
38
+ .with(@expected_view_path)
39
+ .never
40
+
41
+ @controller.enable_prototyping
42
+ end
43
+ end
44
+ end
45
+
46
+ describe 'including' do
47
+ describe 'when Prototypical.enable_on_include is false' do
48
+ setup { Prototypical.stubs(:enable_on_include?).returns(false) }
49
+
50
+ it 'should not automatically enable prototyping' do
51
+ StubController
52
+ .expects(:before_action)
53
+ .with(:enable_prototyping)
54
+ .never
55
+
56
+ StubController.send :include, Controller
57
+ end
58
+ end
59
+
60
+ describe 'when Prototypical.enabled_on_include? is true' do
61
+ setup { Prototypical.stubs(:enable_on_include?).returns(true) }
62
+
63
+ it 'should automatically enable prototyping' do
64
+ StubController
65
+ .expects(:before_action)
66
+ .with(:enable_prototyping)
67
+
68
+ StubController.send :include, Controller
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PrototypicalTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Prototypical
6
+ end
7
+ end
@@ -0,0 +1,20 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+ require 'mocha/mini_test'
7
+
8
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
9
+ # to be shown.
10
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
11
+
12
+ # Load support files
13
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+
15
+ # Load fixtures from the engine
16
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
17
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
18
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
19
+ ActiveSupport::TestCase.fixtures :all
20
+ end
metadata ADDED
@@ -0,0 +1,155 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: prototypical
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adam Phillips
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-12-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.5
27
+ description: Adds simple prototyping to Rails application via a secondary template
28
+ folder.
29
+ email:
30
+ - adam@29ways.co.uk
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - MIT-LICENSE
36
+ - Rakefile
37
+ - lib/prototypical.rb
38
+ - lib/prototypical/configuration.rb
39
+ - lib/prototypical/controller.rb
40
+ - lib/prototypical/railtie.rb
41
+ - lib/prototypical/version.rb
42
+ - lib/tasks/prototypical_tasks.rake
43
+ - test/dummy/README.rdoc
44
+ - test/dummy/Rakefile
45
+ - test/dummy/app/assets/javascripts/application.js
46
+ - test/dummy/app/assets/stylesheets/application.css
47
+ - test/dummy/app/controllers/application_controller.rb
48
+ - test/dummy/app/controllers/static_controller.rb
49
+ - test/dummy/app/helpers/application_helper.rb
50
+ - test/dummy/app/prototypes/static/disabled_prototype.html.erb
51
+ - test/dummy/app/prototypes/static/enabled_prototype.html.erb
52
+ - test/dummy/app/views/layouts/application.html.erb
53
+ - test/dummy/app/views/static/disabled_prototype.html.erb
54
+ - test/dummy/app/views/static/enabled_prototype.html.erb
55
+ - test/dummy/app/views/static/home.html.erb
56
+ - test/dummy/bin/bundle
57
+ - test/dummy/bin/rails
58
+ - test/dummy/bin/rake
59
+ - test/dummy/bin/setup
60
+ - test/dummy/config.ru
61
+ - test/dummy/config/application.rb
62
+ - test/dummy/config/boot.rb
63
+ - test/dummy/config/environment.rb
64
+ - test/dummy/config/environments/development.rb
65
+ - test/dummy/config/environments/production.rb
66
+ - test/dummy/config/environments/test.rb
67
+ - test/dummy/config/initializers/assets.rb
68
+ - test/dummy/config/initializers/backtrace_silencers.rb
69
+ - test/dummy/config/initializers/cookies_serializer.rb
70
+ - test/dummy/config/initializers/filter_parameter_logging.rb
71
+ - test/dummy/config/initializers/inflections.rb
72
+ - test/dummy/config/initializers/mime_types.rb
73
+ - test/dummy/config/initializers/session_store.rb
74
+ - test/dummy/config/initializers/wrap_parameters.rb
75
+ - test/dummy/config/locales/en.yml
76
+ - test/dummy/config/routes.rb
77
+ - test/dummy/config/secrets.yml
78
+ - test/dummy/log/test.log
79
+ - test/dummy/public/404.html
80
+ - test/dummy/public/422.html
81
+ - test/dummy/public/500.html
82
+ - test/dummy/public/favicon.ico
83
+ - test/integration/root_test.rb
84
+ - test/lib/prototypical/controller_test.rb
85
+ - test/prototypical_test.rb
86
+ - test/test_helper.rb
87
+ homepage: https://github.com/adamphillips/prototypical
88
+ licenses:
89
+ - MIT
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 2.4.3
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Easy prototyping in Rails applications.
111
+ test_files:
112
+ - test/dummy/app/assets/javascripts/application.js
113
+ - test/dummy/app/assets/stylesheets/application.css
114
+ - test/dummy/app/controllers/application_controller.rb
115
+ - test/dummy/app/controllers/static_controller.rb
116
+ - test/dummy/app/helpers/application_helper.rb
117
+ - test/dummy/app/prototypes/static/disabled_prototype.html.erb
118
+ - test/dummy/app/prototypes/static/enabled_prototype.html.erb
119
+ - test/dummy/app/views/layouts/application.html.erb
120
+ - test/dummy/app/views/static/disabled_prototype.html.erb
121
+ - test/dummy/app/views/static/enabled_prototype.html.erb
122
+ - test/dummy/app/views/static/home.html.erb
123
+ - test/dummy/bin/bundle
124
+ - test/dummy/bin/rails
125
+ - test/dummy/bin/rake
126
+ - test/dummy/bin/setup
127
+ - test/dummy/config/application.rb
128
+ - test/dummy/config/boot.rb
129
+ - test/dummy/config/environment.rb
130
+ - test/dummy/config/environments/development.rb
131
+ - test/dummy/config/environments/production.rb
132
+ - test/dummy/config/environments/test.rb
133
+ - test/dummy/config/initializers/assets.rb
134
+ - test/dummy/config/initializers/backtrace_silencers.rb
135
+ - test/dummy/config/initializers/cookies_serializer.rb
136
+ - test/dummy/config/initializers/filter_parameter_logging.rb
137
+ - test/dummy/config/initializers/inflections.rb
138
+ - test/dummy/config/initializers/mime_types.rb
139
+ - test/dummy/config/initializers/session_store.rb
140
+ - test/dummy/config/initializers/wrap_parameters.rb
141
+ - test/dummy/config/locales/en.yml
142
+ - test/dummy/config/routes.rb
143
+ - test/dummy/config/secrets.yml
144
+ - test/dummy/config.ru
145
+ - test/dummy/log/test.log
146
+ - test/dummy/public/404.html
147
+ - test/dummy/public/422.html
148
+ - test/dummy/public/500.html
149
+ - test/dummy/public/favicon.ico
150
+ - test/dummy/Rakefile
151
+ - test/dummy/README.rdoc
152
+ - test/integration/root_test.rb
153
+ - test/lib/prototypical/controller_test.rb
154
+ - test/prototypical_test.rb
155
+ - test/test_helper.rb