killbill-payment-test-ui 2.0.0 → 2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: cd998df42126f6aa9d3591bb10154a9631f69184b68e3c548aa2e7c490592105
4
- data.tar.gz: 24467df8645f7d51ab9ca92f4e1037ce2211e8f632c292e5b364943323423b89
2
+ SHA1:
3
+ metadata.gz: 05bcb7b3327b481a22b4303e3939175dc19ad0b8
4
+ data.tar.gz: 7667d91c8944d65aa2e7031184894f3d28659a9f
5
5
  SHA512:
6
- metadata.gz: 543136a23fdd0eac968060face245131cffb8e1d2189f8df332297c7d435c874cad3772925b63a894d0c330fea1a3869173ff7117bf581bda584a89f57b8a1fd
7
- data.tar.gz: 411fe7b0de21545d91204967082165b431325a0af0f398f78087909fe58f1bc7f750ce06a37e39a811cf33db2a9de6b4aa3778dc64a58a35ad8d7726cbcec00e
6
+ metadata.gz: 9791ca004b503dd4daf6530034ae9a2e7968a5a7e87879b6223dd9f65ee7f197a7cd377526c9fe494997654cff332b7291c453ce73d00475a668f248aa876983
7
+ data.tar.gz: 57bc9cb96b9beda6baac429a2bf1e15ec22430f748b73d3133db5363e2f3ab3e467a3d463f4ebb9ef8705d73e539607ca65b4186a0768873bd9df77eb80ed4e6
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  begin
2
4
  require 'bundler/setup'
3
5
  rescue LoadError
@@ -14,14 +16,11 @@ RDoc::Task.new(:rdoc) do |rdoc|
14
16
  rdoc.rdoc_files.include('lib/**/*.rb')
15
17
  end
16
18
 
17
- APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
19
+ APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
18
20
  load 'rails/tasks/engine.rake'
19
21
 
20
-
21
22
  load 'rails/tasks/statistics.rake'
22
23
 
23
-
24
-
25
24
  require 'bundler/gem_tasks'
26
25
 
27
26
  require 'rake/testtask'
@@ -33,5 +32,4 @@ Rake::TestTask.new(:test) do |t|
33
32
  t.verbose = false
34
33
  end
35
34
 
36
-
37
35
  task default: :test
@@ -1,66 +1,63 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'payment_test/client'
2
4
 
3
5
  module PaymentTest
4
6
  class PaymentsController < EngineController
5
-
6
7
  def index
7
8
  begin
8
9
  raw_status = ::Killbill::PaymentTest::PaymentTestClient.status(options_for_klient)
9
- rescue => e
10
+ rescue StandardError => e
10
11
  Rails.logger.warn("Failed to retrieve payment status : #{e}")
11
12
  end
12
13
 
13
- if raw_status.nil?
14
- @status = "UNKNOWN"
15
- elsif raw_status.key? :always_return_plugin_status_error.to_s
16
- @status = "RETURN ERROR"
17
- elsif raw_status.key? :always_return_plugin_status_pending.to_s
18
- @status = "RETURN PENDING"
19
- elsif raw_status.key? :always_return_plugin_status_canceled.to_s
20
- @status = "RETURN CANCELED"
21
- elsif raw_status.key? :always_throw.to_s
22
- @status = "RETURN THROW"
23
- elsif raw_status.key? :always_return_nil.to_s
24
- @status = "RETURN NULL "
25
- elsif raw_status.key? :sleep_time_sec.to_s
26
- @status = "SLEEP #{sleep_time_sec}"
27
- else
28
- @status = "CLEAR"
29
- end
30
-
31
- if raw_status.nil?
32
- @methods = ['*']
33
- elsif !raw_status.key?("methods") || raw_status["methods"].empty?
34
- @methods = ['*']
35
- else
36
- @methods = raw_status["methods"]
37
- end
14
+ @status = if raw_status.nil?
15
+ 'UNKNOWN'
16
+ elsif raw_status.key? :always_return_plugin_status_error.to_s
17
+ 'RETURN ERROR'
18
+ elsif raw_status.key? :always_return_plugin_status_pending.to_s
19
+ 'RETURN PENDING'
20
+ elsif raw_status.key? :always_return_plugin_status_canceled.to_s
21
+ 'RETURN CANCELED'
22
+ elsif raw_status.key? :always_throw.to_s
23
+ 'RETURN THROW'
24
+ elsif raw_status.key? :always_return_nil.to_s
25
+ 'RETURN NULL '
26
+ elsif raw_status.key? :sleep_time_sec.to_s
27
+ "SLEEP #{sleep_time_sec}"
28
+ else
29
+ 'CLEAR'
30
+ end
31
+
32
+ @methods = if raw_status.nil?
33
+ ['*']
34
+ elsif !raw_status.key?('methods') || raw_status['methods'].empty?
35
+ ['*']
36
+ else
37
+ raw_status['methods']
38
+ end
38
39
  end
39
40
 
40
41
  def set_failed_state
41
-
42
42
  new_state = params.require(:state)
43
43
  target_method = "set_status_#{new_state.to_s.downcase}".to_sym
44
44
 
45
45
  begin
46
46
  ::Killbill::PaymentTest::PaymentTestClient.send(target_method, nil, options_for_klient)
47
- rescue => e
47
+ rescue StandardError => e
48
48
  flash[:error] = "Failed to set state: #{e}"
49
49
  end
50
50
 
51
-
52
51
  redirect_to root_path and return
53
52
  end
54
53
 
55
54
  def reset
56
-
57
55
  begin
58
56
  ::Killbill::PaymentTest::PaymentTestClient.reset(nil, options_for_klient)
59
- rescue => e
57
+ rescue StandardError => e
60
58
  flash[:error] = "Failed to reset state: #{e}"
61
59
  end
62
60
  redirect_to root_path and return
63
61
  end
64
-
65
62
  end
66
63
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PaymentTest
2
4
  module ApplicationHelper
3
5
  end
data/config/routes.rb CHANGED
@@ -1,12 +1,12 @@
1
- PaymentTest::Engine.routes.draw do
1
+ # frozen_string_literal: true
2
2
 
3
+ PaymentTest::Engine.routes.draw do
3
4
  root to: 'payments#index'
4
5
 
5
- resources :payments, :only => [:index]
6
+ resources :payments, only: [:index]
6
7
 
7
8
  scope '/payments' do
8
9
  match '/set_failed_state' => 'payments#set_failed_state', :via => :post, :as => 'set_failed_state'
9
10
  match '/reset' => 'payments#reset', :via => :post, :as => 'reset'
10
11
  end
11
-
12
12
  end
data/lib/payment_test.rb CHANGED
@@ -1,23 +1,24 @@
1
- require "payment_test/engine"
1
+ # frozen_string_literal: true
2
2
 
3
- module PaymentTest
3
+ require 'payment_test/engine'
4
4
 
5
+ module PaymentTest
5
6
  mattr_accessor :current_tenant_user
6
7
  mattr_accessor :layout
7
8
 
8
- self.current_tenant_user = lambda { |session, user|
9
+ self.current_tenant_user = lambda { |_session, _user|
9
10
  {
10
- :username => 'admin',
11
- :password => 'password',
12
- :session_id => nil,
13
- :api_key => KillBillClient.api_key,
14
- :api_secret => KillBillClient.api_secret
11
+ username: 'admin',
12
+ password: 'password',
13
+ session_id: nil,
14
+ api_key: KillBillClient.api_key,
15
+ api_secret: KillBillClient.api_secret
15
16
  }
16
17
  }
17
18
 
18
- def self.config(&block)
19
+ def self.config
19
20
  {
20
- :layout => layout || 'payment_test/layouts/payment_test_application',
21
+ layout: layout || 'payment_test/layouts/payment_test_application'
21
22
  }
22
23
  end
23
24
  end
@@ -1,13 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'json'
2
4
 
3
5
  module Killbill
4
6
  module PaymentTest
5
-
6
7
  class PaymentTestClient < KillBillClient::Model::Resource
7
-
8
8
  KILLBILL_PAYMENT_TEST_PREFIX = '/plugins/killbill-payment-test'
9
9
  class << self
10
-
11
10
  def status(options = {})
12
11
  response = KillBillClient::API.get "#{KILLBILL_PAYMENT_TEST_PREFIX}/status",
13
12
  {},
@@ -16,58 +15,53 @@ module Killbill
16
15
  end
17
16
 
18
17
  def set_status_pending(methods, options = {})
19
- configure("ACTION_RETURN_PLUGIN_STATUS_PENDING", nil, methods, options)
18
+ configure('ACTION_RETURN_PLUGIN_STATUS_PENDING', nil, methods, options)
20
19
  end
21
20
 
22
21
  def set_status_error(methods, options = {})
23
- configure("ACTION_RETURN_PLUGIN_STATUS_ERROR", nil, methods, options)
22
+ configure('ACTION_RETURN_PLUGIN_STATUS_ERROR', nil, methods, options)
24
23
  end
25
24
 
26
25
  def set_status_canceled(methods, options = {})
27
- configure("ACTION_RETURN_PLUGIN_STATUS_CANCELED", nil, methods, options)
26
+ configure('ACTION_RETURN_PLUGIN_STATUS_CANCELED', nil, methods, options)
28
27
  end
29
28
 
30
-
31
29
  def set_sleep_time(sleep_time_sec, methods, options = {})
32
- configure("ACTION_SLEEP", sleep_time_sec, methods, options)
30
+ configure('ACTION_SLEEP', sleep_time_sec, methods, options)
33
31
  end
34
32
 
35
33
  def set_status_throw(methods, options = {})
36
- configure("ACTION_THROW_EXCEPTION", nil, methods, options)
34
+ configure('ACTION_THROW_EXCEPTION', nil, methods, options)
37
35
  end
38
36
 
39
37
  def set_status_null(methods, options = {})
40
- configure("ACTION_RETURN_NIL", nil, methods, options)
38
+ configure('ACTION_RETURN_NIL', nil, methods, options)
41
39
  end
42
40
 
43
41
  def reset(methods, options = {})
44
- configure("ACTION_RESET", nil, methods, options)
42
+ configure('ACTION_RESET', nil, methods, options)
45
43
  end
46
44
 
47
45
  private
48
46
 
49
- def configure(action, arg, methods, options = {})
50
-
47
+ def configure(action, arg, methods, options = {})
51
48
  body = {
52
- "CONFIGURE_ACTION" => action
49
+ 'CONFIGURE_ACTION' => action
53
50
  }
54
51
 
55
- if action == "ACTION_RESET"
56
- body["SLEEP_TIME_SEC"] = arg
57
- end
52
+ body['SLEEP_TIME_SEC'] = arg if action == 'ACTION_RESET'
58
53
 
59
- body["METHODS"] = methods.nil? ? nil : methods.join(",")
54
+ body['METHODS'] = methods.nil? ? nil : methods.join(',')
60
55
 
61
56
  KillBillClient::API.post "#{KILLBILL_PAYMENT_TEST_PREFIX}/configure",
62
57
  body.to_json,
63
58
  {},
64
59
  {
65
- :user => 'anonymous',
66
- :reason => "TEST",
67
- :comment => "TEST",
60
+ user: 'anonymous',
61
+ reason: 'TEST',
62
+ comment: 'TEST'
68
63
  }.merge(options)
69
64
  end
70
-
71
65
  end
72
66
  end
73
67
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Dependencies
2
4
  #
3
5
  # Sigh. Rails autoloads the gems specified in the Gemfile and nothing else.
@@ -11,7 +13,6 @@ require 'killbill_client'
11
13
 
12
14
  module PaymentTest
13
15
  class Engine < ::Rails::Engine
14
-
15
16
  isolate_namespace PaymentTest
16
17
  end
17
18
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PaymentTest
2
- VERSION = "2.0.0"
4
+ VERSION = '2.0.1'
3
5
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # desc "Explaining what the task does"
2
3
  # task :payment_test do
3
4
  # # Task goes here
@@ -0,0 +1 @@
1
+ {}
@@ -1,7 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class NavigationTest < ActionDispatch::IntegrationTest
4
-
5
6
  include PaymentTest::Engine.routes.url_helpers
6
7
 
7
8
  test 'can see the payment test info page' do
@@ -9,4 +10,3 @@ class NavigationTest < ActionDispatch::IntegrationTest
9
10
  assert_response :success
10
11
  end
11
12
  end
12
-
@@ -1,7 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class PaymentTestTest < ActiveSupport::TestCase
4
-
5
6
  test 'can load PaymentTest module' do
6
7
  assert_kind_of Module, PaymentTest
7
8
  end
data/test/test_helper.rb CHANGED
@@ -1,19 +1,21 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Configure Rails Environment
2
- ENV["RAILS_ENV"] = "test"
4
+ ENV['RAILS_ENV'] = 'test'
3
5
 
4
- require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
- require "rails/test_help"
6
+ require File.expand_path('../test/dummy/config/environment.rb', __dir__)
7
+ require 'rails/test_help'
6
8
 
7
9
  # Filter out Minitest backtrace while allowing backtrace from other libraries
8
10
  # to be shown.
9
11
  Minitest.backtrace_filter = Minitest::BacktraceFilter.new
10
12
 
11
13
  # Load support files
12
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }
13
15
 
14
16
  # Load fixtures from the engine
15
17
  if ActiveSupport::TestCase.respond_to?(:fixture_path=)
16
- ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
18
+ ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
17
19
  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
18
20
  ActiveSupport::TestCase.fixtures :all
19
21
  end
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-payment-test-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kill Bill core team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-21 00:00:00.000000000 Z
11
+ date: 2021-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: jquery-rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '5.1'
19
+ version: '4.3'
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: '5.1'
26
+ version: '4.3'
27
27
  - !ruby/object:Gem::Dependency
28
- name: jquery-rails
28
+ name: rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '4.3'
33
+ version: '5.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '4.3'
40
+ version: '5.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: twitter-bootstrap-rails
42
+ name: sass-rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '5.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '5.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: font-awesome-rails
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -81,13 +81,13 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.2'
83
83
  - !ruby/object:Gem::Dependency
84
- name: rake
84
+ name: twitter-bootstrap-rails
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
- type: :development
90
+ type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
@@ -95,7 +95,35 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: simplecov
98
+ name: gem-release
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.2'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.2'
111
+ - !ruby/object:Gem::Dependency
112
+ name: json
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 1.8.6
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 1.8.6
125
+ - !ruby/object:Gem::Dependency
126
+ name: listen
99
127
  requirement: !ruby/object:Gem::Requirement
100
128
  requirements:
101
129
  - - ">="
@@ -109,7 +137,7 @@ dependencies:
109
137
  - !ruby/object:Gem::Version
110
138
  version: '0'
111
139
  - !ruby/object:Gem::Dependency
112
- name: listen
140
+ name: rake
113
141
  requirement: !ruby/object:Gem::Requirement
114
142
  requirements:
115
143
  - - ">="
@@ -123,19 +151,33 @@ dependencies:
123
151
  - !ruby/object:Gem::Version
124
152
  version: '0'
125
153
  - !ruby/object:Gem::Dependency
126
- name: json
154
+ name: rubocop
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.88.0
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.88.0
167
+ - !ruby/object:Gem::Dependency
168
+ name: simplecov
127
169
  requirement: !ruby/object:Gem::Requirement
128
170
  requirements:
129
171
  - - ">="
130
172
  - !ruby/object:Gem::Version
131
- version: 1.8.6
173
+ version: '0'
132
174
  type: :development
133
175
  prerelease: false
134
176
  version_requirements: !ruby/object:Gem::Requirement
135
177
  requirements:
136
178
  - - ">="
137
179
  - !ruby/object:Gem::Version
138
- version: 1.8.6
180
+ version: '0'
139
181
  description: Rails UI plugin for the payment-test plugin.
140
182
  email: killbilling-users@googlegroups.com
141
183
  executables: []
@@ -163,6 +205,7 @@ files:
163
205
  - lib/tasks/payment_test_tasks.rake
164
206
  - test/dummy/README.rdoc
165
207
  - test/dummy/Rakefile
208
+ - test/dummy/app/assets/config/manifest.js
166
209
  - test/dummy/app/controllers/application_controller.rb
167
210
  - test/dummy/app/helpers/application_helper.rb
168
211
  - test/dummy/bin/bundle
@@ -214,42 +257,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
257
  - !ruby/object:Gem::Version
215
258
  version: '0'
216
259
  requirements: []
217
- rubygems_version: 3.0.6
260
+ rubyforge_project:
261
+ rubygems_version: 2.6.13
218
262
  signing_key:
219
263
  specification_version: 4
220
264
  summary: Kill Bill Payment Test UI mountable engine
221
265
  test_files:
222
266
  - test/test_helper.rb
223
267
  - test/integration/navigation_test.rb
224
- - test/dummy/config/secrets.yml
225
- - test/dummy/config/locales/en.yml
226
- - test/dummy/config/environment.rb
268
+ - test/dummy/config.ru
269
+ - test/dummy/bin/yarn
270
+ - test/dummy/bin/update
271
+ - test/dummy/bin/rake
272
+ - test/dummy/bin/setup
273
+ - test/dummy/bin/bundle
274
+ - test/dummy/bin/rails
227
275
  - test/dummy/config/routes.rb
228
- - test/dummy/config/environments/test.rb
229
- - test/dummy/config/environments/production.rb
230
- - test/dummy/config/environments/development.rb
231
- - test/dummy/config/initializers/new_framework_defaults_5_1.rb
232
- - test/dummy/config/initializers/inflections.rb
233
- - test/dummy/config/initializers/assets.rb
234
- - test/dummy/config/initializers/backtrace_silencers.rb
235
- - test/dummy/config/initializers/killbill_client.rb
236
- - test/dummy/config/initializers/filter_parameter_logging.rb
276
+ - test/dummy/config/boot.rb
237
277
  - test/dummy/config/initializers/mime_types.rb
238
278
  - test/dummy/config/initializers/application_controller_renderer.rb
239
- - test/dummy/config/initializers/cookies_serializer.rb
279
+ - test/dummy/config/initializers/killbill_client.rb
280
+ - test/dummy/config/initializers/assets.rb
240
281
  - test/dummy/config/initializers/session_store.rb
241
282
  - test/dummy/config/initializers/wrap_parameters.rb
242
- - test/dummy/config/boot.rb
283
+ - test/dummy/config/initializers/filter_parameter_logging.rb
284
+ - test/dummy/config/initializers/cookies_serializer.rb
285
+ - test/dummy/config/initializers/new_framework_defaults_5_1.rb
286
+ - test/dummy/config/initializers/backtrace_silencers.rb
287
+ - test/dummy/config/initializers/inflections.rb
288
+ - test/dummy/config/locales/en.yml
289
+ - test/dummy/config/secrets.yml
290
+ - test/dummy/config/environment.rb
291
+ - test/dummy/config/environments/production.rb
292
+ - test/dummy/config/environments/development.rb
293
+ - test/dummy/config/environments/test.rb
243
294
  - test/dummy/config/application.rb
244
- - test/dummy/Rakefile
245
295
  - test/dummy/README.rdoc
296
+ - test/dummy/Rakefile
246
297
  - test/dummy/app/controllers/application_controller.rb
247
298
  - test/dummy/app/helpers/application_helper.rb
248
- - test/dummy/config.ru
249
- - test/dummy/bin/rake
250
- - test/dummy/bin/bundle
251
- - test/dummy/bin/update
252
- - test/dummy/bin/setup
253
- - test/dummy/bin/yarn
254
- - test/dummy/bin/rails
299
+ - test/dummy/app/assets/config/manifest.js
255
300
  - test/payment_test_test.rb