gopseng 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 (113) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/gopseng/application.js +15 -0
  6. data/app/assets/javascripts/gopseng/pricelists.js +2 -0
  7. data/app/assets/stylesheets/gopseng/application.css +13 -0
  8. data/app/assets/stylesheets/gopseng/pricelists.css +4 -0
  9. data/app/assets/stylesheets/scaffold.css +56 -0
  10. data/app/controllers/gopseng/application_controller.rb +4 -0
  11. data/app/controllers/gopseng/pricelists_controller.rb +87 -0
  12. data/app/helpers/gopseng/application_helper.rb +4 -0
  13. data/app/helpers/gopseng/pricelists_helper.rb +4 -0
  14. data/app/models/gopseng/pricelist.rb +5 -0
  15. data/app/views/gopseng/pricelists/_form.html.erb +25 -0
  16. data/app/views/gopseng/pricelists/edit.html.erb +6 -0
  17. data/app/views/gopseng/pricelists/index.html.erb +25 -0
  18. data/app/views/gopseng/pricelists/new.html.erb +5 -0
  19. data/app/views/gopseng/pricelists/show.html.erb +15 -0
  20. data/app/views/layouts/gopseng/application.html.erb +14 -0
  21. data/config/routes.rb +5 -0
  22. data/db/migrate/20140824123153_create_gopseng_pricelists.rb +10 -0
  23. data/lib/gopseng.rb +4 -0
  24. data/lib/gopseng/engine.rb +5 -0
  25. data/lib/gopseng/version.rb +3 -0
  26. data/lib/tasks/gopseng_tasks.rake +4 -0
  27. data/test/dummy/README.rdoc +261 -0
  28. data/test/dummy/Rakefile +7 -0
  29. data/test/dummy/app/assets/javascripts/application.js +15 -0
  30. data/test/dummy/app/assets/javascripts/failures.js +2 -0
  31. data/test/dummy/app/assets/javascripts/pricelists.js +2 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/test/dummy/app/assets/stylesheets/failures.css +4 -0
  34. data/test/dummy/app/assets/stylesheets/pricelists.css +4 -0
  35. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  36. data/test/dummy/app/controllers/application_controller.rb +3 -0
  37. data/test/dummy/app/controllers/failures_controller.rb +4 -0
  38. data/test/dummy/app/helpers/application_helper.rb +2 -0
  39. data/test/dummy/app/helpers/failures_helper.rb +2 -0
  40. data/test/dummy/app/helpers/pricelists_helper.rb +2 -0
  41. data/test/dummy/app/models/pricelist.rb +3 -0
  42. data/test/dummy/app/views/failures/index.html.erb +1 -0
  43. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  44. data/test/dummy/config.ru +4 -0
  45. data/test/dummy/config/application.rb +59 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/database.yml +23 -0
  48. data/test/dummy/config/environment.rb +5 -0
  49. data/test/dummy/config/environments/development.rb +37 -0
  50. data/test/dummy/config/environments/production.rb +67 -0
  51. data/test/dummy/config/environments/test.rb +37 -0
  52. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/test/dummy/config/initializers/inflections.rb +15 -0
  54. data/test/dummy/config/initializers/mime_types.rb +5 -0
  55. data/test/dummy/config/initializers/secret_token.rb +7 -0
  56. data/test/dummy/config/initializers/session_store.rb +8 -0
  57. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/dummy/config/locales/en.yml +5 -0
  59. data/test/dummy/config/routes.rb +11 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20140824123605_create_pricelists.rb +10 -0
  62. data/test/dummy/db/schema.rb +30 -0
  63. data/test/dummy/db/test.sqlite3 +0 -0
  64. data/test/dummy/log/development.log +560 -0
  65. data/test/dummy/public/404.html +26 -0
  66. data/test/dummy/public/422.html +26 -0
  67. data/test/dummy/public/500.html +25 -0
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/dummy/script/rails +6 -0
  70. data/test/dummy/test/fixtures/pricelists.yml +9 -0
  71. data/test/dummy/test/functional/failures_controller_test.rb +9 -0
  72. data/test/dummy/test/functional/pricelists_controller_test.rb +49 -0
  73. data/test/dummy/test/unit/helpers/failures_helper_test.rb +4 -0
  74. data/test/dummy/test/unit/helpers/pricelists_helper_test.rb +4 -0
  75. data/test/dummy/test/unit/pricelist_test.rb +7 -0
  76. data/test/dummy/tmp/cache/assets/C27/910/sprockets%2F37543c5533a312658782327ad976a57c +0 -0
  77. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  78. data/test/dummy/tmp/cache/assets/CA8/5E0/sprockets%2F711b00251cd82eb164b2fe584992382e +0 -0
  79. data/test/dummy/tmp/cache/assets/CB5/C70/sprockets%2F37a8fa3860de3236ca0949995557aa21 +0 -0
  80. data/test/dummy/tmp/cache/assets/CD7/CC0/sprockets%2Fc1f33ca9500917295c32de33690a5b8b +0 -0
  81. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  82. data/test/dummy/tmp/cache/assets/CDA/DB0/sprockets%2F06991b057becc4b32d864f3863b3140e +0 -0
  83. data/test/dummy/tmp/cache/assets/CDE/1E0/sprockets%2F8e8b232a74f07d41c952319fed452b51 +0 -0
  84. data/test/dummy/tmp/cache/assets/CDE/CA0/sprockets%2F19d30e54d12eb83632c972f0d030ff98 +0 -0
  85. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  86. data/test/dummy/tmp/cache/assets/D04/140/sprockets%2F55d610c10e76a09133234f8cc57ae6dc +0 -0
  87. data/test/dummy/tmp/cache/assets/D10/DA0/sprockets%2F122838c7fd19e335a6ae68943070acdd +0 -0
  88. data/test/dummy/tmp/cache/assets/D26/BA0/sprockets%2Fcdbf8221e513d5611a4502bf9dac5050 +0 -0
  89. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  90. data/test/dummy/tmp/cache/assets/D49/040/sprockets%2F4cb480f85353dab78c6e7336a95c4b5f +0 -0
  91. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  92. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  93. data/test/dummy/tmp/cache/assets/D6A/220/sprockets%2Fd87140a2bf31949b147b76f6a6abbc8a +0 -0
  94. data/test/dummy/tmp/cache/assets/D6F/810/sprockets%2F5a605c924b3a8338f1f1bf4ce9ef52b5 +0 -0
  95. data/test/dummy/tmp/cache/assets/D71/520/sprockets%2F30ec6fc4049a9849b8f80ea74a7b0bd2 +0 -0
  96. data/test/dummy/tmp/cache/assets/D76/A20/sprockets%2F52e8f912ec0593ad1dd2fb3d787c1f75 +0 -0
  97. data/test/dummy/tmp/cache/assets/D7C/000/sprockets%2F46be98e5a77fd8deb0a660938ab44e43 +0 -0
  98. data/test/dummy/tmp/cache/assets/D8C/680/sprockets%2F2f4757cbd4606a5f4ed352bba81acb10 +0 -0
  99. data/test/dummy/tmp/cache/assets/D93/780/sprockets%2F0d7cbcea57be467c83ed13033337ac2f +0 -0
  100. data/test/dummy/tmp/cache/assets/D96/E20/sprockets%2Fbfcf05e9041d8302db1eb7c4ef577a41 +0 -0
  101. data/test/dummy/tmp/cache/assets/D98/A20/sprockets%2F51de16f12f8a14df329be1bab75fc744 +0 -0
  102. data/test/dummy/tmp/cache/assets/DAC/700/sprockets%2F9f0fac97dcf660dd617f3c14f917d4c5 +0 -0
  103. data/test/dummy/tmp/cache/assets/DAF/940/sprockets%2F6f0bb36f849be67c6128d28cfa99bce3 +0 -0
  104. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  105. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  106. data/test/fixtures/gopseng/pricelists.yml +9 -0
  107. data/test/functional/gopseng/pricelists_controller_test.rb +51 -0
  108. data/test/gopseng_test.rb +7 -0
  109. data/test/integration/navigation_test.rb +10 -0
  110. data/test/test_helper.rb +15 -0
  111. data/test/unit/gopseng/pricelist_test.rb +9 -0
  112. data/test/unit/helpers/gopseng/pricelists_helper_test.rb +6 -0
  113. metadata +282 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby.exe
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'
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ price: 1
6
+
7
+ two:
8
+ title: MyString
9
+ price: 1
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class FailuresControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class PricelistsControllerTest < ActionController::TestCase
4
+ setup do
5
+ @pricelist = pricelists(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:pricelists)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create pricelist" do
20
+ assert_difference('Pricelist.count') do
21
+ post :create, pricelist: { price: @pricelist.price, title: @pricelist.title }
22
+ end
23
+
24
+ assert_redirected_to pricelist_path(assigns(:pricelist))
25
+ end
26
+
27
+ test "should show pricelist" do
28
+ get :show, id: @pricelist
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @pricelist
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update pricelist" do
38
+ put :update, id: @pricelist, pricelist: { price: @pricelist.price, title: @pricelist.title }
39
+ assert_redirected_to pricelist_path(assigns(:pricelist))
40
+ end
41
+
42
+ test "should destroy pricelist" do
43
+ assert_difference('Pricelist.count', -1) do
44
+ delete :destroy, id: @pricelist
45
+ end
46
+
47
+ assert_redirected_to pricelists_path
48
+ end
49
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class FailuresHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class PricelistsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PricelistTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ price: 1
6
+
7
+ two:
8
+ name: MyString
9
+ price: 1
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module Gopseng
4
+ class PricelistsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @pricelist = pricelists(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:pricelists)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create pricelist" do
21
+ assert_difference('Pricelist.count') do
22
+ post :create, pricelist: { name: @pricelist.name, price: @pricelist.price }
23
+ end
24
+
25
+ assert_redirected_to pricelist_path(assigns(:pricelist))
26
+ end
27
+
28
+ test "should show pricelist" do
29
+ get :show, id: @pricelist
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @pricelist
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update pricelist" do
39
+ put :update, id: @pricelist, pricelist: { name: @pricelist.name, price: @pricelist.price }
40
+ assert_redirected_to pricelist_path(assigns(:pricelist))
41
+ end
42
+
43
+ test "should destroy pricelist" do
44
+ assert_difference('Pricelist.count', -1) do
45
+ delete :destroy, id: @pricelist
46
+ end
47
+
48
+ assert_redirected_to pricelists_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class GopsengTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Gopseng
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Gopseng
4
+ class PricelistTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Gopseng
4
+ class PricelistsHelperTest < ActionView::TestCase
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,282 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gopseng
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - kumar jerry
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-26 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: 3.2.11
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.11
27
+ - !ruby/object:Gem::Dependency
28
+ name: jquery-rails
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: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: 'not working '
56
+ email:
57
+ - mails2kumarjerry@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - app/assets/javascripts/gopseng/application.js
63
+ - app/assets/javascripts/gopseng/pricelists.js
64
+ - app/assets/stylesheets/gopseng/application.css
65
+ - app/assets/stylesheets/gopseng/pricelists.css
66
+ - app/assets/stylesheets/scaffold.css
67
+ - app/controllers/gopseng/application_controller.rb
68
+ - app/controllers/gopseng/pricelists_controller.rb
69
+ - app/helpers/gopseng/application_helper.rb
70
+ - app/helpers/gopseng/pricelists_helper.rb
71
+ - app/models/gopseng/pricelist.rb
72
+ - app/views/gopseng/pricelists/edit.html.erb
73
+ - app/views/gopseng/pricelists/index.html.erb
74
+ - app/views/gopseng/pricelists/new.html.erb
75
+ - app/views/gopseng/pricelists/show.html.erb
76
+ - app/views/gopseng/pricelists/_form.html.erb
77
+ - app/views/layouts/gopseng/application.html.erb
78
+ - config/routes.rb
79
+ - db/migrate/20140824123153_create_gopseng_pricelists.rb
80
+ - lib/gopseng/engine.rb
81
+ - lib/gopseng/version.rb
82
+ - lib/gopseng.rb
83
+ - lib/tasks/gopseng_tasks.rake
84
+ - MIT-LICENSE
85
+ - Rakefile
86
+ - README.rdoc
87
+ - test/dummy/app/assets/javascripts/application.js
88
+ - test/dummy/app/assets/javascripts/failures.js
89
+ - test/dummy/app/assets/javascripts/pricelists.js
90
+ - test/dummy/app/assets/stylesheets/application.css
91
+ - test/dummy/app/assets/stylesheets/failures.css
92
+ - test/dummy/app/assets/stylesheets/pricelists.css
93
+ - test/dummy/app/assets/stylesheets/scaffold.css
94
+ - test/dummy/app/controllers/application_controller.rb
95
+ - test/dummy/app/controllers/failures_controller.rb
96
+ - test/dummy/app/helpers/application_helper.rb
97
+ - test/dummy/app/helpers/failures_helper.rb
98
+ - test/dummy/app/helpers/pricelists_helper.rb
99
+ - test/dummy/app/models/pricelist.rb
100
+ - test/dummy/app/views/failures/index.html.erb
101
+ - test/dummy/app/views/layouts/application.html.erb
102
+ - test/dummy/config/application.rb
103
+ - test/dummy/config/boot.rb
104
+ - test/dummy/config/database.yml
105
+ - test/dummy/config/environment.rb
106
+ - test/dummy/config/environments/development.rb
107
+ - test/dummy/config/environments/production.rb
108
+ - test/dummy/config/environments/test.rb
109
+ - test/dummy/config/initializers/backtrace_silencers.rb
110
+ - test/dummy/config/initializers/inflections.rb
111
+ - test/dummy/config/initializers/mime_types.rb
112
+ - test/dummy/config/initializers/secret_token.rb
113
+ - test/dummy/config/initializers/session_store.rb
114
+ - test/dummy/config/initializers/wrap_parameters.rb
115
+ - test/dummy/config/locales/en.yml
116
+ - test/dummy/config/routes.rb
117
+ - test/dummy/config.ru
118
+ - test/dummy/db/development.sqlite3
119
+ - test/dummy/db/migrate/20140824123605_create_pricelists.rb
120
+ - test/dummy/db/schema.rb
121
+ - test/dummy/db/test.sqlite3
122
+ - test/dummy/log/development.log
123
+ - test/dummy/public/404.html
124
+ - test/dummy/public/422.html
125
+ - test/dummy/public/500.html
126
+ - test/dummy/public/favicon.ico
127
+ - test/dummy/Rakefile
128
+ - test/dummy/README.rdoc
129
+ - test/dummy/script/rails
130
+ - test/dummy/test/fixtures/pricelists.yml
131
+ - test/dummy/test/functional/failures_controller_test.rb
132
+ - test/dummy/test/functional/pricelists_controller_test.rb
133
+ - test/dummy/test/unit/helpers/failures_helper_test.rb
134
+ - test/dummy/test/unit/helpers/pricelists_helper_test.rb
135
+ - test/dummy/test/unit/pricelist_test.rb
136
+ - test/dummy/tmp/cache/assets/C27/910/sprockets%2F37543c5533a312658782327ad976a57c
137
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
138
+ - test/dummy/tmp/cache/assets/CA8/5E0/sprockets%2F711b00251cd82eb164b2fe584992382e
139
+ - test/dummy/tmp/cache/assets/CB5/C70/sprockets%2F37a8fa3860de3236ca0949995557aa21
140
+ - test/dummy/tmp/cache/assets/CD7/CC0/sprockets%2Fc1f33ca9500917295c32de33690a5b8b
141
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
142
+ - test/dummy/tmp/cache/assets/CDA/DB0/sprockets%2F06991b057becc4b32d864f3863b3140e
143
+ - test/dummy/tmp/cache/assets/CDE/1E0/sprockets%2F8e8b232a74f07d41c952319fed452b51
144
+ - test/dummy/tmp/cache/assets/CDE/CA0/sprockets%2F19d30e54d12eb83632c972f0d030ff98
145
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
146
+ - test/dummy/tmp/cache/assets/D04/140/sprockets%2F55d610c10e76a09133234f8cc57ae6dc
147
+ - test/dummy/tmp/cache/assets/D10/DA0/sprockets%2F122838c7fd19e335a6ae68943070acdd
148
+ - test/dummy/tmp/cache/assets/D26/BA0/sprockets%2Fcdbf8221e513d5611a4502bf9dac5050
149
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
150
+ - test/dummy/tmp/cache/assets/D49/040/sprockets%2F4cb480f85353dab78c6e7336a95c4b5f
151
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
152
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
153
+ - test/dummy/tmp/cache/assets/D6A/220/sprockets%2Fd87140a2bf31949b147b76f6a6abbc8a
154
+ - test/dummy/tmp/cache/assets/D6F/810/sprockets%2F5a605c924b3a8338f1f1bf4ce9ef52b5
155
+ - test/dummy/tmp/cache/assets/D71/520/sprockets%2F30ec6fc4049a9849b8f80ea74a7b0bd2
156
+ - test/dummy/tmp/cache/assets/D76/A20/sprockets%2F52e8f912ec0593ad1dd2fb3d787c1f75
157
+ - test/dummy/tmp/cache/assets/D7C/000/sprockets%2F46be98e5a77fd8deb0a660938ab44e43
158
+ - test/dummy/tmp/cache/assets/D8C/680/sprockets%2F2f4757cbd4606a5f4ed352bba81acb10
159
+ - test/dummy/tmp/cache/assets/D93/780/sprockets%2F0d7cbcea57be467c83ed13033337ac2f
160
+ - test/dummy/tmp/cache/assets/D96/E20/sprockets%2Fbfcf05e9041d8302db1eb7c4ef577a41
161
+ - test/dummy/tmp/cache/assets/D98/A20/sprockets%2F51de16f12f8a14df329be1bab75fc744
162
+ - test/dummy/tmp/cache/assets/DAC/700/sprockets%2F9f0fac97dcf660dd617f3c14f917d4c5
163
+ - test/dummy/tmp/cache/assets/DAF/940/sprockets%2F6f0bb36f849be67c6128d28cfa99bce3
164
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
165
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
166
+ - test/fixtures/gopseng/pricelists.yml
167
+ - test/functional/gopseng/pricelists_controller_test.rb
168
+ - test/gopseng_test.rb
169
+ - test/integration/navigation_test.rb
170
+ - test/test_helper.rb
171
+ - test/unit/gopseng/pricelist_test.rb
172
+ - test/unit/helpers/gopseng/pricelists_helper_test.rb
173
+ homepage:
174
+ licenses: []
175
+ metadata: {}
176
+ post_install_message:
177
+ rdoc_options: []
178
+ require_paths:
179
+ - lib
180
+ required_ruby_version: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - '>='
183
+ - !ruby/object:Gem::Version
184
+ version: '0'
185
+ required_rubygems_version: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ requirements: []
191
+ rubyforge_project:
192
+ rubygems_version: 2.0.14
193
+ signing_key:
194
+ specification_version: 4
195
+ summary: my first engine testing
196
+ test_files:
197
+ - test/dummy/app/assets/javascripts/application.js
198
+ - test/dummy/app/assets/javascripts/failures.js
199
+ - test/dummy/app/assets/javascripts/pricelists.js
200
+ - test/dummy/app/assets/stylesheets/application.css
201
+ - test/dummy/app/assets/stylesheets/failures.css
202
+ - test/dummy/app/assets/stylesheets/pricelists.css
203
+ - test/dummy/app/assets/stylesheets/scaffold.css
204
+ - test/dummy/app/controllers/application_controller.rb
205
+ - test/dummy/app/controllers/failures_controller.rb
206
+ - test/dummy/app/helpers/application_helper.rb
207
+ - test/dummy/app/helpers/failures_helper.rb
208
+ - test/dummy/app/helpers/pricelists_helper.rb
209
+ - test/dummy/app/models/pricelist.rb
210
+ - test/dummy/app/views/failures/index.html.erb
211
+ - test/dummy/app/views/layouts/application.html.erb
212
+ - test/dummy/config/application.rb
213
+ - test/dummy/config/boot.rb
214
+ - test/dummy/config/database.yml
215
+ - test/dummy/config/environment.rb
216
+ - test/dummy/config/environments/development.rb
217
+ - test/dummy/config/environments/production.rb
218
+ - test/dummy/config/environments/test.rb
219
+ - test/dummy/config/initializers/backtrace_silencers.rb
220
+ - test/dummy/config/initializers/inflections.rb
221
+ - test/dummy/config/initializers/mime_types.rb
222
+ - test/dummy/config/initializers/secret_token.rb
223
+ - test/dummy/config/initializers/session_store.rb
224
+ - test/dummy/config/initializers/wrap_parameters.rb
225
+ - test/dummy/config/locales/en.yml
226
+ - test/dummy/config/routes.rb
227
+ - test/dummy/config.ru
228
+ - test/dummy/db/development.sqlite3
229
+ - test/dummy/db/migrate/20140824123605_create_pricelists.rb
230
+ - test/dummy/db/schema.rb
231
+ - test/dummy/db/test.sqlite3
232
+ - test/dummy/log/development.log
233
+ - test/dummy/public/404.html
234
+ - test/dummy/public/422.html
235
+ - test/dummy/public/500.html
236
+ - test/dummy/public/favicon.ico
237
+ - test/dummy/Rakefile
238
+ - test/dummy/README.rdoc
239
+ - test/dummy/script/rails
240
+ - test/dummy/test/fixtures/pricelists.yml
241
+ - test/dummy/test/functional/failures_controller_test.rb
242
+ - test/dummy/test/functional/pricelists_controller_test.rb
243
+ - test/dummy/test/unit/helpers/failures_helper_test.rb
244
+ - test/dummy/test/unit/helpers/pricelists_helper_test.rb
245
+ - test/dummy/test/unit/pricelist_test.rb
246
+ - test/dummy/tmp/cache/assets/C27/910/sprockets%2F37543c5533a312658782327ad976a57c
247
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
248
+ - test/dummy/tmp/cache/assets/CA8/5E0/sprockets%2F711b00251cd82eb164b2fe584992382e
249
+ - test/dummy/tmp/cache/assets/CB5/C70/sprockets%2F37a8fa3860de3236ca0949995557aa21
250
+ - test/dummy/tmp/cache/assets/CD7/CC0/sprockets%2Fc1f33ca9500917295c32de33690a5b8b
251
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
252
+ - test/dummy/tmp/cache/assets/CDA/DB0/sprockets%2F06991b057becc4b32d864f3863b3140e
253
+ - test/dummy/tmp/cache/assets/CDE/1E0/sprockets%2F8e8b232a74f07d41c952319fed452b51
254
+ - test/dummy/tmp/cache/assets/CDE/CA0/sprockets%2F19d30e54d12eb83632c972f0d030ff98
255
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
256
+ - test/dummy/tmp/cache/assets/D04/140/sprockets%2F55d610c10e76a09133234f8cc57ae6dc
257
+ - test/dummy/tmp/cache/assets/D10/DA0/sprockets%2F122838c7fd19e335a6ae68943070acdd
258
+ - test/dummy/tmp/cache/assets/D26/BA0/sprockets%2Fcdbf8221e513d5611a4502bf9dac5050
259
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
260
+ - test/dummy/tmp/cache/assets/D49/040/sprockets%2F4cb480f85353dab78c6e7336a95c4b5f
261
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
262
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
263
+ - test/dummy/tmp/cache/assets/D6A/220/sprockets%2Fd87140a2bf31949b147b76f6a6abbc8a
264
+ - test/dummy/tmp/cache/assets/D6F/810/sprockets%2F5a605c924b3a8338f1f1bf4ce9ef52b5
265
+ - test/dummy/tmp/cache/assets/D71/520/sprockets%2F30ec6fc4049a9849b8f80ea74a7b0bd2
266
+ - test/dummy/tmp/cache/assets/D76/A20/sprockets%2F52e8f912ec0593ad1dd2fb3d787c1f75
267
+ - test/dummy/tmp/cache/assets/D7C/000/sprockets%2F46be98e5a77fd8deb0a660938ab44e43
268
+ - test/dummy/tmp/cache/assets/D8C/680/sprockets%2F2f4757cbd4606a5f4ed352bba81acb10
269
+ - test/dummy/tmp/cache/assets/D93/780/sprockets%2F0d7cbcea57be467c83ed13033337ac2f
270
+ - test/dummy/tmp/cache/assets/D96/E20/sprockets%2Fbfcf05e9041d8302db1eb7c4ef577a41
271
+ - test/dummy/tmp/cache/assets/D98/A20/sprockets%2F51de16f12f8a14df329be1bab75fc744
272
+ - test/dummy/tmp/cache/assets/DAC/700/sprockets%2F9f0fac97dcf660dd617f3c14f917d4c5
273
+ - test/dummy/tmp/cache/assets/DAF/940/sprockets%2F6f0bb36f849be67c6128d28cfa99bce3
274
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
275
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
276
+ - test/fixtures/gopseng/pricelists.yml
277
+ - test/functional/gopseng/pricelists_controller_test.rb
278
+ - test/gopseng_test.rb
279
+ - test/integration/navigation_test.rb
280
+ - test/test_helper.rb
281
+ - test/unit/gopseng/pricelist_test.rb
282
+ - test/unit/helpers/gopseng/pricelists_helper_test.rb