bank-validator 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -0
  3. data/Gemfile.lock +1 -0
  4. data/VERSION +1 -1
  5. data/bank-validator.gemspec +63 -4
  6. data/lib/bank-validator.rb +5 -1
  7. data/test/dummy/.gitignore +17 -0
  8. data/test/dummy/.rspec +2 -0
  9. data/test/dummy/Gemfile +46 -0
  10. data/test/dummy/Gemfile.lock +183 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/images/.keep +0 -0
  14. data/test/dummy/app/assets/javascripts/application.js +16 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/controllers/concerns/.keep +0 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/mailers/.keep +0 -0
  20. data/test/dummy/app/models/.keep +0 -0
  21. data/test/dummy/app/models/concerns/.keep +0 -0
  22. data/test/dummy/app/models/user.rb +3 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/bin/bundle +3 -0
  25. data/test/dummy/bin/rails +8 -0
  26. data/test/dummy/bin/rake +8 -0
  27. data/test/dummy/bin/setup +29 -0
  28. data/test/dummy/bin/spring +15 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +35 -0
  31. data/test/dummy/config/boot.rb +3 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +41 -0
  35. data/test/dummy/config/environments/production.rb +79 -0
  36. data/test/dummy/config/environments/test.rb +42 -0
  37. data/test/dummy/config/initializers/assets.rb +11 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/test/dummy/config/initializers/inflections.rb +16 -0
  42. data/test/dummy/config/initializers/mime_types.rb +4 -0
  43. data/test/dummy/config/initializers/session_store.rb +3 -0
  44. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/test/dummy/config/locales/en.yml +23 -0
  46. data/test/dummy/config/routes.rb +56 -0
  47. data/test/dummy/config/secrets.yml +22 -0
  48. data/test/dummy/db/migrate/20150330083818_create_users.rb +11 -0
  49. data/test/dummy/db/schema.rb +24 -0
  50. data/test/dummy/db/seeds.rb +7 -0
  51. data/test/dummy/lib/assets/.keep +0 -0
  52. data/test/dummy/lib/tasks/.keep +0 -0
  53. data/test/dummy/log/.keep +0 -0
  54. data/test/dummy/public/404.html +67 -0
  55. data/test/dummy/public/422.html +67 -0
  56. data/test/dummy/public/500.html +66 -0
  57. data/test/dummy/public/favicon.ico +0 -0
  58. data/test/dummy/public/robots.txt +5 -0
  59. data/test/dummy/spec/features/gem_testing_spec.rb +22 -0
  60. data/test/dummy/spec/rails_helper.rb +11 -0
  61. data/test/dummy/spec/spec_helper.rb +9 -0
  62. data/test/dummy/vendor/assets/javascripts/.keep +0 -0
  63. data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
  64. data/test/helper.rb +0 -1
  65. data/test/test_bank-validator.rb +0 -1
  66. metadata +73 -3
  67. data/lib/active_model.rb +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a46fbc13a9cac58d289a439168a4ecdab0e9fa8
4
- data.tar.gz: 15b35484a766720f8fd2a3651014bddb0793714b
3
+ metadata.gz: 137cabc680b6f14aeea6ee151183e91efe53f68c
4
+ data.tar.gz: 2ae243a0d7e1a13561fc3fa3c656c1dc0fc81b3c
5
5
  SHA512:
6
- metadata.gz: d100a081f72f95deb1e07fc40bd4f822089489563973110bd1937153266ca387b47d6af93340c1b90cef36b465eb62bcbbdd5cdb4e912ed8bf1945ee2f1dee5d
7
- data.tar.gz: 5c73fe4cdcc43fc4d91e2d05e7f5739440efb781d588a794f2a4fa26403a0b400ef6bfa0d5b1398a6e98ae725392a2cb3a5bcbc1005b8a88cc5e7e4726408876
6
+ metadata.gz: 5b0a258e72ebb542061939e2783aac6077e7ff9fd7182e0afa3e7b3f0056cf25b3ed8d508ba0782320012baef6676ddc3f829f7f657dcd4ba28ddf49e0501275
7
+ data.tar.gz: ca4413c23066c6c648a73bb59571f168656ad9e4e5806a46d1dec66e2b825112f1793a6728bedcc9c8e48f5e8e0c82ff2ddc268ca7e335fe1d50cb6846a88295
data/Gemfile CHANGED
@@ -4,6 +4,7 @@ source "http://rubygems.org"
4
4
  # gem "activesupport", ">= 2.3.5"
5
5
  gem "activesupport", ">= 3.0"
6
6
  gem "activerecord", ">= 3.0"
7
+ gem "activemodel", ">= 3.0"
7
8
 
8
9
  # Add dependencies to develop your gem here.
9
10
  # Include everything needed to run rake, tests, features, etc.
data/Gemfile.lock CHANGED
@@ -95,6 +95,7 @@ PLATFORMS
95
95
  ruby
96
96
 
97
97
  DEPENDENCIES
98
+ activemodel (>= 3.0)
98
99
  activerecord (>= 3.0)
99
100
  activesupport (>= 3.0)
100
101
  bundler (~> 1.0)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: bank-validator 0.0.4 ruby lib
5
+ # stub: bank-validator 0.0.5 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "bank-validator"
9
- s.version = "0.0.4"
9
+ s.version = "0.0.5"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Adam Bahlke"]
14
- s.date = "2015-03-27"
14
+ s.date = "2015-03-30"
15
15
  s.description = "Validates IBAN and BIC account numbers. Still a work in progress"
16
16
  s.email = "adam.bahlke@hitfoxgroup.com"
17
17
  s.extra_rdoc_files = [
@@ -27,9 +27,65 @@ Gem::Specification.new do |s|
27
27
  "Rakefile",
28
28
  "VERSION",
29
29
  "bank-validator.gemspec",
30
- "lib/active_model.rb",
31
30
  "lib/active_model/iban_validator.rb",
32
31
  "lib/bank-validator.rb",
32
+ "test/dummy/.gitignore",
33
+ "test/dummy/.rspec",
34
+ "test/dummy/Gemfile",
35
+ "test/dummy/Gemfile.lock",
36
+ "test/dummy/README.rdoc",
37
+ "test/dummy/Rakefile",
38
+ "test/dummy/app/assets/images/.keep",
39
+ "test/dummy/app/assets/javascripts/application.js",
40
+ "test/dummy/app/assets/stylesheets/application.css",
41
+ "test/dummy/app/controllers/application_controller.rb",
42
+ "test/dummy/app/controllers/concerns/.keep",
43
+ "test/dummy/app/helpers/application_helper.rb",
44
+ "test/dummy/app/mailers/.keep",
45
+ "test/dummy/app/models/.keep",
46
+ "test/dummy/app/models/concerns/.keep",
47
+ "test/dummy/app/models/user.rb",
48
+ "test/dummy/app/views/layouts/application.html.erb",
49
+ "test/dummy/bin/bundle",
50
+ "test/dummy/bin/rails",
51
+ "test/dummy/bin/rake",
52
+ "test/dummy/bin/setup",
53
+ "test/dummy/bin/spring",
54
+ "test/dummy/config.ru",
55
+ "test/dummy/config/application.rb",
56
+ "test/dummy/config/boot.rb",
57
+ "test/dummy/config/database.yml",
58
+ "test/dummy/config/environment.rb",
59
+ "test/dummy/config/environments/development.rb",
60
+ "test/dummy/config/environments/production.rb",
61
+ "test/dummy/config/environments/test.rb",
62
+ "test/dummy/config/initializers/assets.rb",
63
+ "test/dummy/config/initializers/backtrace_silencers.rb",
64
+ "test/dummy/config/initializers/cookies_serializer.rb",
65
+ "test/dummy/config/initializers/filter_parameter_logging.rb",
66
+ "test/dummy/config/initializers/inflections.rb",
67
+ "test/dummy/config/initializers/mime_types.rb",
68
+ "test/dummy/config/initializers/session_store.rb",
69
+ "test/dummy/config/initializers/wrap_parameters.rb",
70
+ "test/dummy/config/locales/en.yml",
71
+ "test/dummy/config/routes.rb",
72
+ "test/dummy/config/secrets.yml",
73
+ "test/dummy/db/migrate/20150330083818_create_users.rb",
74
+ "test/dummy/db/schema.rb",
75
+ "test/dummy/db/seeds.rb",
76
+ "test/dummy/lib/assets/.keep",
77
+ "test/dummy/lib/tasks/.keep",
78
+ "test/dummy/log/.keep",
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/dummy/public/robots.txt",
84
+ "test/dummy/spec/features/gem_testing_spec.rb",
85
+ "test/dummy/spec/rails_helper.rb",
86
+ "test/dummy/spec/spec_helper.rb",
87
+ "test/dummy/vendor/assets/javascripts/.keep",
88
+ "test/dummy/vendor/assets/stylesheets/.keep",
33
89
  "test/helper.rb",
34
90
  "test/test_bank-validator.rb"
35
91
  ]
@@ -44,6 +100,7 @@ Gem::Specification.new do |s|
44
100
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
45
101
  s.add_runtime_dependency(%q<activesupport>, [">= 3.0"])
46
102
  s.add_runtime_dependency(%q<activerecord>, [">= 3.0"])
103
+ s.add_runtime_dependency(%q<activemodel>, [">= 3.0"])
47
104
  s.add_development_dependency(%q<rspec>, [">= 0"])
48
105
  s.add_development_dependency(%q<shoulda>, ["~> 3.5"])
49
106
  s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
@@ -53,6 +110,7 @@ Gem::Specification.new do |s|
53
110
  else
54
111
  s.add_dependency(%q<activesupport>, [">= 3.0"])
55
112
  s.add_dependency(%q<activerecord>, [">= 3.0"])
113
+ s.add_dependency(%q<activemodel>, [">= 3.0"])
56
114
  s.add_dependency(%q<rspec>, [">= 0"])
57
115
  s.add_dependency(%q<shoulda>, ["~> 3.5"])
58
116
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
@@ -63,6 +121,7 @@ Gem::Specification.new do |s|
63
121
  else
64
122
  s.add_dependency(%q<activesupport>, [">= 3.0"])
65
123
  s.add_dependency(%q<activerecord>, [">= 3.0"])
124
+ s.add_dependency(%q<activemodel>, [">= 3.0"])
66
125
  s.add_dependency(%q<rspec>, [">= 0"])
67
126
  s.add_dependency(%q<shoulda>, ["~> 3.5"])
68
127
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
@@ -1 +1,5 @@
1
- require_relative './active_model'
1
+ require_relative './active_model/iban_validator'
2
+
3
+ module ActiveModel
4
+ autoload :IbanValidator, './active_model/iban_validator'
5
+ end
@@ -0,0 +1,17 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ !/log/.keep
17
+ /tmp
data/test/dummy/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
@@ -0,0 +1,46 @@
1
+ source 'https://rubygems.org'
2
+
3
+
4
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
+ gem 'rails', '4.2.1'
6
+ # Use sqlite3 as the database for Active Record
7
+ gem 'sqlite3'
8
+ # Use SCSS for stylesheets
9
+ gem 'sass-rails', '~> 5.0'
10
+ # Use Uglifier as compressor for JavaScript assets
11
+ gem 'uglifier', '>= 1.3.0'
12
+ # Use CoffeeScript for .coffee assets and views
13
+ gem 'coffee-rails', '~> 4.1.0'
14
+ # See https://github.com/rails/execjs#readme for more supported runtimes
15
+ # gem 'therubyracer', platforms: :ruby
16
+
17
+ # Use jquery as the JavaScript library
18
+ gem 'jquery-rails'
19
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
20
+ gem 'turbolinks'
21
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
22
+ gem 'jbuilder', '~> 2.0'
23
+ # bundle exec rake doc:rails generates the API under doc/api.
24
+ gem 'sdoc', '~> 0.4.0', group: :doc
25
+ gem 'bank-validator', path: "~/Workspace/bank-validator"
26
+
27
+ # Use ActiveModel has_secure_password
28
+ # gem 'bcrypt', '~> 3.1.7'
29
+
30
+ # Use Unicorn as the app server
31
+ # gem 'unicorn'
32
+
33
+ # Use Capistrano for deployment
34
+ # gem 'capistrano-rails', group: :development
35
+
36
+ group :development, :test do
37
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
38
+ gem 'byebug'
39
+ gem 'rspec'
40
+ # Access an IRB console on exception pages or by using <%= console %> in views
41
+ gem 'web-console', '~> 2.0'
42
+
43
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
44
+ gem 'spring'
45
+ end
46
+
@@ -0,0 +1,183 @@
1
+ PATH
2
+ remote: ~/Workspace/bank-validator
3
+ specs:
4
+ bank-validator (0.0.4)
5
+ activerecord (>= 3.0)
6
+ activesupport (>= 3.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.1)
12
+ actionpack (= 4.2.1)
13
+ actionview (= 4.2.1)
14
+ activejob (= 4.2.1)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.1)
18
+ actionview (= 4.2.1)
19
+ activesupport (= 4.2.1)
20
+ rack (~> 1.6)
21
+ rack-test (~> 0.6.2)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
24
+ actionview (4.2.1)
25
+ activesupport (= 4.2.1)
26
+ builder (~> 3.1)
27
+ erubis (~> 2.7.0)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
30
+ activejob (4.2.1)
31
+ activesupport (= 4.2.1)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.1)
34
+ activesupport (= 4.2.1)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.1)
37
+ activemodel (= 4.2.1)
38
+ activesupport (= 4.2.1)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.1)
41
+ i18n (~> 0.7)
42
+ json (~> 1.7, >= 1.7.7)
43
+ minitest (~> 5.1)
44
+ thread_safe (~> 0.3, >= 0.3.4)
45
+ tzinfo (~> 1.1)
46
+ arel (6.0.0)
47
+ binding_of_caller (0.7.2)
48
+ debug_inspector (>= 0.0.1)
49
+ builder (3.2.2)
50
+ byebug (4.0.4)
51
+ columnize (= 0.9.0)
52
+ coffee-rails (4.1.0)
53
+ coffee-script (>= 2.2.0)
54
+ railties (>= 4.0.0, < 5.0)
55
+ coffee-script (2.3.0)
56
+ coffee-script-source
57
+ execjs
58
+ coffee-script-source (1.9.1)
59
+ columnize (0.9.0)
60
+ debug_inspector (0.0.2)
61
+ diff-lcs (1.2.5)
62
+ erubis (2.7.0)
63
+ execjs (2.4.0)
64
+ globalid (0.3.3)
65
+ activesupport (>= 4.1.0)
66
+ hike (1.2.3)
67
+ i18n (0.7.0)
68
+ jbuilder (2.2.12)
69
+ activesupport (>= 3.0.0, < 5)
70
+ multi_json (~> 1.2)
71
+ jquery-rails (4.0.3)
72
+ rails-dom-testing (~> 1.0)
73
+ railties (>= 4.2.0)
74
+ thor (>= 0.14, < 2.0)
75
+ json (1.8.2)
76
+ loofah (2.0.1)
77
+ nokogiri (>= 1.5.9)
78
+ mail (2.6.3)
79
+ mime-types (>= 1.16, < 3)
80
+ mime-types (2.4.3)
81
+ mini_portile (0.6.2)
82
+ minitest (5.5.1)
83
+ multi_json (1.11.0)
84
+ nokogiri (1.6.6.2)
85
+ mini_portile (~> 0.6.0)
86
+ rack (1.6.0)
87
+ rack-test (0.6.3)
88
+ rack (>= 1.0)
89
+ rails (4.2.1)
90
+ actionmailer (= 4.2.1)
91
+ actionpack (= 4.2.1)
92
+ actionview (= 4.2.1)
93
+ activejob (= 4.2.1)
94
+ activemodel (= 4.2.1)
95
+ activerecord (= 4.2.1)
96
+ activesupport (= 4.2.1)
97
+ bundler (>= 1.3.0, < 2.0)
98
+ railties (= 4.2.1)
99
+ sprockets-rails
100
+ rails-deprecated_sanitizer (1.0.3)
101
+ activesupport (>= 4.2.0.alpha)
102
+ rails-dom-testing (1.0.6)
103
+ activesupport (>= 4.2.0.beta, < 5.0)
104
+ nokogiri (~> 1.6.0)
105
+ rails-deprecated_sanitizer (>= 1.0.1)
106
+ rails-html-sanitizer (1.0.2)
107
+ loofah (~> 2.0)
108
+ railties (4.2.1)
109
+ actionpack (= 4.2.1)
110
+ activesupport (= 4.2.1)
111
+ rake (>= 0.8.7)
112
+ thor (>= 0.18.1, < 2.0)
113
+ rake (10.4.2)
114
+ rdoc (4.2.0)
115
+ json (~> 1.4)
116
+ rspec (3.2.0)
117
+ rspec-core (~> 3.2.0)
118
+ rspec-expectations (~> 3.2.0)
119
+ rspec-mocks (~> 3.2.0)
120
+ rspec-core (3.2.2)
121
+ rspec-support (~> 3.2.0)
122
+ rspec-expectations (3.2.0)
123
+ diff-lcs (>= 1.2.0, < 2.0)
124
+ rspec-support (~> 3.2.0)
125
+ rspec-mocks (3.2.1)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.2.0)
128
+ rspec-support (3.2.2)
129
+ sass (3.4.13)
130
+ sass-rails (5.0.2)
131
+ railties (>= 4.0.0, < 5.0)
132
+ sass (~> 3.1)
133
+ sprockets (>= 2.8, < 4.0)
134
+ sprockets-rails (>= 2.0, < 4.0)
135
+ tilt (~> 1.1)
136
+ sdoc (0.4.1)
137
+ json (~> 1.7, >= 1.7.7)
138
+ rdoc (~> 4.0)
139
+ spring (1.3.3)
140
+ sprockets (2.12.3)
141
+ hike (~> 1.2)
142
+ multi_json (~> 1.0)
143
+ rack (~> 1.0)
144
+ tilt (~> 1.1, != 1.3.0)
145
+ sprockets-rails (2.2.4)
146
+ actionpack (>= 3.0)
147
+ activesupport (>= 3.0)
148
+ sprockets (>= 2.8, < 4.0)
149
+ sqlite3 (1.3.10)
150
+ thor (0.19.1)
151
+ thread_safe (0.3.5)
152
+ tilt (1.4.1)
153
+ turbolinks (2.5.3)
154
+ coffee-rails
155
+ tzinfo (1.2.2)
156
+ thread_safe (~> 0.1)
157
+ uglifier (2.7.1)
158
+ execjs (>= 0.3.0)
159
+ json (>= 1.8.0)
160
+ web-console (2.1.2)
161
+ activemodel (>= 4.0)
162
+ binding_of_caller (>= 0.7.2)
163
+ railties (>= 4.0)
164
+ sprockets-rails (>= 2.0, < 4.0)
165
+
166
+ PLATFORMS
167
+ ruby
168
+
169
+ DEPENDENCIES
170
+ bank-validator!
171
+ byebug
172
+ coffee-rails (~> 4.1.0)
173
+ jbuilder (~> 2.0)
174
+ jquery-rails
175
+ rails (= 4.2.1)
176
+ rspec
177
+ sass-rails (~> 5.0)
178
+ sdoc (~> 0.4.0)
179
+ spring
180
+ sqlite3
181
+ turbolinks
182
+ uglifier (>= 1.3.0)
183
+ web-console (~> 2.0)
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
File without changes