g5_sibling_deployer_engine 0.2.6 → 0.3.2

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 (52) hide show
  1. checksums.yaml +6 -14
  2. data/.gitignore +9 -18
  3. data/.travis.yml +2 -3
  4. data/Gemfile +12 -2
  5. data/README.md +1 -2
  6. data/Rakefile +32 -2
  7. data/app/models/sibling/deploy.rb +2 -4
  8. data/app/models/sibling/instruction.rb +1 -3
  9. data/app/models/sibling.rb +1 -3
  10. data/app/views/siblings/deploys/index.html.erb +30 -11
  11. data/app/views/siblings/index.html.erb +29 -12
  12. data/app/views/siblings/instructions/index.html.erb +24 -9
  13. data/g5_sibling_deployer_engine.gemspec +5 -6
  14. data/lib/g5_sibling_deployer_engine/version.rb +1 -1
  15. data/lib/g5_sibling_deployer_engine.rb +0 -1
  16. data/spec/dummy/README.rdoc +15 -248
  17. data/spec/dummy/Rakefile +0 -1
  18. data/spec/dummy/app/{mailers/.gitkeep → assets/images/.keep} +0 -0
  19. data/spec/dummy/app/assets/javascripts/application.js +3 -5
  20. data/spec/dummy/app/controllers/application_controller.rb +3 -1
  21. data/spec/dummy/app/{models/.gitkeep → controllers/concerns/.keep} +0 -0
  22. data/spec/dummy/{lib/assets/.gitkeep → app/mailers/.keep} +0 -0
  23. data/spec/dummy/{log/.gitkeep → app/models/.keep} +0 -0
  24. data/spec/dummy/app/models/concerns/.keep +0 -0
  25. data/spec/dummy/app/views/layouts/application.html.erb +2 -2
  26. data/spec/dummy/config/application.rb +2 -44
  27. data/spec/dummy/config/boot.rb +4 -9
  28. data/spec/dummy/config/environment.rb +2 -2
  29. data/spec/dummy/config/environments/development.rb +11 -19
  30. data/spec/dummy/config/environments/production.rb +40 -27
  31. data/spec/dummy/config/environments/test.rb +13 -14
  32. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  33. data/spec/dummy/config/initializers/inflections.rb +6 -5
  34. data/spec/dummy/config/initializers/secret_token.rb +7 -2
  35. data/spec/dummy/config/initializers/session_store.rb +0 -5
  36. data/spec/dummy/config/initializers/wrap_parameters.rb +6 -6
  37. data/spec/dummy/config/locales/en.yml +20 -2
  38. data/spec/dummy/config/routes.rb +22 -24
  39. data/spec/dummy/config.ru +1 -1
  40. data/spec/dummy/db/test.sqlite3 +0 -0
  41. data/spec/dummy/lib/assets/.keep +0 -0
  42. data/spec/dummy/log/.keep +0 -0
  43. data/spec/dummy/public/404.html +43 -11
  44. data/spec/dummy/public/422.html +43 -11
  45. data/spec/dummy/public/500.html +43 -11
  46. data/spec/models/sibling/instruction_spec.rb +2 -0
  47. data/spec/models/sibling_spec.rb +1 -0
  48. data/spec/spec_helper.rb +6 -7
  49. data/spec/workers/sibling_deployer_spec.rb +1 -1
  50. metadata +56 -65
  51. data/config/initializers/table_cloth.rb +0 -3
  52. data/spec/dummy/script/rails +0 -6
@@ -1,19 +1,20 @@
1
1
  Dummy::Application.routes.draw do
2
- # The priority is based upon order of creation:
3
- # first created -> highest priority.
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
4
 
5
- # Sample of regular route:
6
- # match 'products/:id' => 'catalog#view'
7
- # Keep in mind you can assign values other than :controller and :action
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
8
10
 
9
- # Sample of named route:
10
- # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
- # This route can be invoked with purchase_url(:id => product.id)
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
12
13
 
13
- # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
14
15
  # resources :products
15
16
 
16
- # Sample resource route with options:
17
+ # Example resource route with options:
17
18
  # resources :products do
18
19
  # member do
19
20
  # get 'short'
@@ -25,34 +26,31 @@ Dummy::Application.routes.draw do
25
26
  # end
26
27
  # end
27
28
 
28
- # Sample resource route with sub-resources:
29
+ # Example resource route with sub-resources:
29
30
  # resources :products do
30
31
  # resources :comments, :sales
31
32
  # resource :seller
32
33
  # end
33
34
 
34
- # Sample resource route with more complex sub-resources
35
+ # Example resource route with more complex sub-resources:
35
36
  # resources :products do
36
37
  # resources :comments
37
38
  # resources :sales do
38
- # get 'recent', :on => :collection
39
+ # get 'recent', on: :collection
39
40
  # end
40
41
  # end
41
42
 
42
- # Sample resource route within a namespace:
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
43
51
  # namespace :admin do
44
52
  # # Directs /admin/products/* to Admin::ProductsController
45
53
  # # (app/controllers/admin/products_controller.rb)
46
54
  # resources :products
47
55
  # end
48
-
49
- # You can have the root of your site routed with "root"
50
- # just remember to delete public/index.html.
51
- # root :to => 'welcome#index'
52
-
53
- # See how all your routes lay out with "rake routes"
54
-
55
- # This is a legacy wild controller route that's not recommended for RESTful applications.
56
- # Note: This route will make all actions in every controller accessible via GET requests.
57
- # match ':controller(/:action(/:id))(.:format)'
58
56
  end
data/spec/dummy/config.ru CHANGED
@@ -1,4 +1,4 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
3
  require ::File.expand_path('../config/environment', __FILE__)
4
- run Dummy::Application
4
+ run Rails.application
Binary file
File without changes
File without changes
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
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; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -22,5 +53,6 @@
22
53
  <h1>The page you were looking for doesn't exist.</h1>
23
54
  <p>You may have mistyped the address or the page may have moved.</p>
24
55
  </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
25
57
  </body>
26
58
  </html>
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
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; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -22,5 +53,6 @@
22
53
  <h1>The change you wanted was rejected.</h1>
23
54
  <p>Maybe you tried to change something you didn't have access to.</p>
24
55
  </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
25
57
  </body>
26
58
  </html>
@@ -2,17 +2,48 @@
2
2
  <html>
3
3
  <head>
4
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; }
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
16
47
  </style>
17
48
  </head>
18
49
 
@@ -21,5 +52,6 @@
21
52
  <div class="dialog">
22
53
  <h1>We're sorry, but something went wrong.</h1>
23
54
  </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
24
56
  </body>
25
57
  </html>
@@ -41,10 +41,12 @@ describe Sibling::Instruction do
41
41
  @instruction = Sibling::Instruction.instruction(@hentry)
42
42
  end
43
43
  it "creates an Sibling::Instruction" do
44
+ Sibling::Instruction.destroy_all
44
45
  expect { Sibling::Instruction.find_or_create_from_hentry(@hentry) }.to(
45
46
  change(Sibling::Instruction, :count).by(1))
46
47
  end
47
48
  it "creates a Deploy" do
49
+ Sibling::Instruction.destroy_all
48
50
  expect { Sibling::Instruction.find_or_create_from_hentry(@hentry) }.to(
49
51
  change(Sibling::Deploy, :count).by(1))
50
52
  end
@@ -36,6 +36,7 @@ describe Sibling do
36
36
  @hcard = Sibling.main_app_hcard.g5_sibling.format
37
37
  end
38
38
  it "creates Sibling if it does not already exist" do
39
+ Sibling.destroy_all
39
40
  expect { Sibling.find_or_create_from_hcard(@hcard) }.to(
40
41
  change(Sibling, :count).by(1))
41
42
  end
data/spec/spec_helper.rb CHANGED
@@ -9,14 +9,19 @@ Spork.prefork do
9
9
  CodeClimate::TestReporter.start
10
10
  end
11
11
 
12
+ # Configure Rails Environment
12
13
  ENV["RAILS_ENV"] ||= 'test'
14
+
13
15
  # Load dummy app
14
16
  require File.expand_path("../dummy/config/environment.rb", __FILE__)
15
17
  require 'rspec/rails'
16
- require 'rspec/autorun'
17
18
 
19
+ # Load support files
18
20
  Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
19
21
 
22
+ # Show all of the backtraces
23
+ Rails.backtrace_cleaner.remove_silencers!
24
+
20
25
  RSpec.configure do |config|
21
26
  config.use_transactional_fixtures = true
22
27
  config.infer_base_class_for_anonymous_controllers = false
@@ -24,12 +29,6 @@ Spork.prefork do
24
29
  end
25
30
 
26
31
  Spork.trap_method(Rails::Application, :eager_load!)
27
- # Load dummy app
28
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
29
- Rails.application.railties.all { |r| r.eager_load! }
30
-
31
- # Show all of the backtraces
32
- Rails.backtrace_cleaner.remove_silencers!
33
32
  end
34
33
 
35
34
  Spork.each_run do
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe SiblingDeployer do
4
4
  before do
5
- @sibling_deploy = mock(Sibling::Deploy)
5
+ @sibling_deploy = double(Sibling::Deploy)
6
6
  Sibling::Deploy.stub(:find) { @sibling_deploy }
7
7
  end
8
8
 
metadata CHANGED
@@ -1,181 +1,167 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: g5_sibling_deployer_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jessica Lynn Suttles
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-11 00:00:00.000000000 Z
11
+ date: 2014-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.2.12
19
+ version: 4.0.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: 3.2.12
27
- - !ruby/object:Gem::Dependency
28
- name: table_cloth
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ~>
32
- - !ruby/object:Gem::Version
33
- version: 0.2.1
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ~>
39
- - !ruby/object:Gem::Version
40
- version: 0.2.1
26
+ version: 4.0.3
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: state_machine
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
- - - ~>
31
+ - - "~>"
46
32
  - !ruby/object:Gem::Version
47
- version: 1.1.2
33
+ version: 1.2.0
48
34
  type: :runtime
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
- - - ~>
38
+ - - "~>"
53
39
  - !ruby/object:Gem::Version
54
- version: 1.1.2
40
+ version: 1.2.0
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: heroku_resque_autoscaler
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
- - - ~>
45
+ - - "~>"
60
46
  - !ruby/object:Gem::Version
61
47
  version: 0.1.0
62
48
  type: :runtime
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
- - - ~>
52
+ - - "~>"
67
53
  - !ruby/object:Gem::Version
68
54
  version: 0.1.0
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: microformats2
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
- - - ~>
59
+ - - "~>"
74
60
  - !ruby/object:Gem::Version
75
61
  version: 2.0.0
76
62
  type: :runtime
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
- - - ~>
66
+ - - "~>"
81
67
  - !ruby/object:Gem::Version
82
68
  version: 2.0.0
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: github_heroku_deployer
85
71
  requirement: !ruby/object:Gem::Requirement
86
72
  requirements:
87
- - - ~>
73
+ - - "~>"
88
74
  - !ruby/object:Gem::Version
89
75
  version: 0.2.0
90
76
  type: :runtime
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
- - - ~>
80
+ - - "~>"
95
81
  - !ruby/object:Gem::Version
96
82
  version: 0.2.0
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: sqlite3
99
85
  requirement: !ruby/object:Gem::Requirement
100
86
  requirements:
101
- - - ~>
87
+ - - "~>"
102
88
  - !ruby/object:Gem::Version
103
89
  version: 1.3.6
104
90
  type: :development
105
91
  prerelease: false
106
92
  version_requirements: !ruby/object:Gem::Requirement
107
93
  requirements:
108
- - - ~>
94
+ - - "~>"
109
95
  - !ruby/object:Gem::Version
110
96
  version: 1.3.6
111
97
  - !ruby/object:Gem::Dependency
112
98
  name: simplecov
113
99
  requirement: !ruby/object:Gem::Requirement
114
100
  requirements:
115
- - - ~>
101
+ - - "~>"
116
102
  - !ruby/object:Gem::Version
117
- version: 0.7.1
103
+ version: 0.8.2
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
107
  requirements:
122
- - - ~>
108
+ - - "~>"
123
109
  - !ruby/object:Gem::Version
124
- version: 0.7.1
110
+ version: 0.8.2
125
111
  - !ruby/object:Gem::Dependency
126
112
  name: rspec-rails
127
113
  requirement: !ruby/object:Gem::Requirement
128
114
  requirements:
129
- - - ~>
115
+ - - "~>"
130
116
  - !ruby/object:Gem::Version
131
- version: 2.12.0
117
+ version: 2.14.1
132
118
  type: :development
133
119
  prerelease: false
134
120
  version_requirements: !ruby/object:Gem::Requirement
135
121
  requirements:
136
- - - ~>
122
+ - - "~>"
137
123
  - !ruby/object:Gem::Version
138
- version: 2.12.0
124
+ version: 2.14.1
139
125
  - !ruby/object:Gem::Dependency
140
126
  name: guard-rspec
141
127
  requirement: !ruby/object:Gem::Requirement
142
128
  requirements:
143
- - - ~>
129
+ - - "~>"
144
130
  - !ruby/object:Gem::Version
145
- version: 2.1.0
131
+ version: 4.2.8
146
132
  type: :development
147
133
  prerelease: false
148
134
  version_requirements: !ruby/object:Gem::Requirement
149
135
  requirements:
150
- - - ~>
136
+ - - "~>"
151
137
  - !ruby/object:Gem::Version
152
- version: 2.1.0
138
+ version: 4.2.8
153
139
  - !ruby/object:Gem::Dependency
154
140
  name: spork
155
141
  requirement: !ruby/object:Gem::Requirement
156
142
  requirements:
157
- - - ~>
143
+ - - "~>"
158
144
  - !ruby/object:Gem::Version
159
145
  version: 0.9.2
160
146
  type: :development
161
147
  prerelease: false
162
148
  version_requirements: !ruby/object:Gem::Requirement
163
149
  requirements:
164
- - - ~>
150
+ - - "~>"
165
151
  - !ruby/object:Gem::Version
166
152
  version: 0.9.2
167
153
  - !ruby/object:Gem::Dependency
168
154
  name: rb-fsevent
169
155
  requirement: !ruby/object:Gem::Requirement
170
156
  requirements:
171
- - - ~>
157
+ - - "~>"
172
158
  - !ruby/object:Gem::Version
173
159
  version: 0.9.2
174
160
  type: :development
175
161
  prerelease: false
176
162
  version_requirements: !ruby/object:Gem::Requirement
177
163
  requirements:
178
- - - ~>
164
+ - - "~>"
179
165
  - !ruby/object:Gem::Version
180
166
  version: 0.9.2
181
167
  description: Rails Engine for G5 sibling deployers
@@ -185,9 +171,9 @@ executables: []
185
171
  extensions: []
186
172
  extra_rdoc_files: []
187
173
  files:
188
- - .gitignore
189
- - .rspec
190
- - .travis.yml
174
+ - ".gitignore"
175
+ - ".rspec"
176
+ - ".travis.yml"
191
177
  - Gemfile
192
178
  - Guardfile
193
179
  - LICENSE.txt
@@ -210,7 +196,6 @@ files:
210
196
  - app/workers/sibling_instruction_consumer.rb
211
197
  - config/initializers/github_heroku_deployer.rb
212
198
  - config/initializers/resque.rb
213
- - config/initializers/table_cloth.rb
214
199
  - config/routes.rb
215
200
  - db/migrate/001_create_siblings.rb
216
201
  - db/migrate/002_create_sibling_deploys.rb
@@ -228,12 +213,15 @@ files:
228
213
  - spec/controllers/webhooks_controller_spec.rb
229
214
  - spec/dummy/README.rdoc
230
215
  - spec/dummy/Rakefile
216
+ - spec/dummy/app/assets/images/.keep
231
217
  - spec/dummy/app/assets/javascripts/application.js
232
218
  - spec/dummy/app/assets/stylesheets/application.css
233
219
  - spec/dummy/app/controllers/application_controller.rb
220
+ - spec/dummy/app/controllers/concerns/.keep
234
221
  - spec/dummy/app/helpers/application_helper.rb
235
- - spec/dummy/app/mailers/.gitkeep
236
- - spec/dummy/app/models/.gitkeep
222
+ - spec/dummy/app/mailers/.keep
223
+ - spec/dummy/app/models/.keep
224
+ - spec/dummy/app/models/concerns/.keep
237
225
  - spec/dummy/app/views/layouts/application.html.erb
238
226
  - spec/dummy/config.ru
239
227
  - spec/dummy/config/application.rb
@@ -244,6 +232,7 @@ files:
244
232
  - spec/dummy/config/environments/production.rb
245
233
  - spec/dummy/config/environments/test.rb
246
234
  - spec/dummy/config/initializers/backtrace_silencers.rb
235
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
247
236
  - spec/dummy/config/initializers/inflections.rb
248
237
  - spec/dummy/config/initializers/mime_types.rb
249
238
  - spec/dummy/config/initializers/secret_token.rb
@@ -254,13 +243,12 @@ files:
254
243
  - spec/dummy/db/development.sqlite3
255
244
  - spec/dummy/db/schema.rb
256
245
  - spec/dummy/db/test.sqlite3
257
- - spec/dummy/lib/assets/.gitkeep
258
- - spec/dummy/log/.gitkeep
246
+ - spec/dummy/lib/assets/.keep
247
+ - spec/dummy/log/.keep
259
248
  - spec/dummy/public/404.html
260
249
  - spec/dummy/public/422.html
261
250
  - spec/dummy/public/500.html
262
251
  - spec/dummy/public/favicon.ico
263
- - spec/dummy/script/rails
264
252
  - spec/lib/g5_sibling_deployer_engine_spec.rb
265
253
  - spec/models/sibling/deploy_spec.rb
266
254
  - spec/models/sibling/instruction_spec.rb
@@ -283,17 +271,17 @@ require_paths:
283
271
  - lib
284
272
  required_ruby_version: !ruby/object:Gem::Requirement
285
273
  requirements:
286
- - - ! '>='
274
+ - - ">="
287
275
  - !ruby/object:Gem::Version
288
276
  version: '0'
289
277
  required_rubygems_version: !ruby/object:Gem::Requirement
290
278
  requirements:
291
- - - ! '>='
279
+ - - ">="
292
280
  - !ruby/object:Gem::Version
293
281
  version: '0'
294
282
  requirements: []
295
283
  rubyforge_project:
296
- rubygems_version: 2.0.6
284
+ rubygems_version: 2.2.2
297
285
  signing_key:
298
286
  specification_version: 4
299
287
  summary: Rails Engine for G5 sibling deployers
@@ -304,12 +292,15 @@ test_files:
304
292
  - spec/controllers/webhooks_controller_spec.rb
305
293
  - spec/dummy/README.rdoc
306
294
  - spec/dummy/Rakefile
295
+ - spec/dummy/app/assets/images/.keep
307
296
  - spec/dummy/app/assets/javascripts/application.js
308
297
  - spec/dummy/app/assets/stylesheets/application.css
309
298
  - spec/dummy/app/controllers/application_controller.rb
299
+ - spec/dummy/app/controllers/concerns/.keep
310
300
  - spec/dummy/app/helpers/application_helper.rb
311
- - spec/dummy/app/mailers/.gitkeep
312
- - spec/dummy/app/models/.gitkeep
301
+ - spec/dummy/app/mailers/.keep
302
+ - spec/dummy/app/models/.keep
303
+ - spec/dummy/app/models/concerns/.keep
313
304
  - spec/dummy/app/views/layouts/application.html.erb
314
305
  - spec/dummy/config.ru
315
306
  - spec/dummy/config/application.rb
@@ -320,6 +311,7 @@ test_files:
320
311
  - spec/dummy/config/environments/production.rb
321
312
  - spec/dummy/config/environments/test.rb
322
313
  - spec/dummy/config/initializers/backtrace_silencers.rb
314
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
323
315
  - spec/dummy/config/initializers/inflections.rb
324
316
  - spec/dummy/config/initializers/mime_types.rb
325
317
  - spec/dummy/config/initializers/secret_token.rb
@@ -330,13 +322,12 @@ test_files:
330
322
  - spec/dummy/db/development.sqlite3
331
323
  - spec/dummy/db/schema.rb
332
324
  - spec/dummy/db/test.sqlite3
333
- - spec/dummy/lib/assets/.gitkeep
334
- - spec/dummy/log/.gitkeep
325
+ - spec/dummy/lib/assets/.keep
326
+ - spec/dummy/log/.keep
335
327
  - spec/dummy/public/404.html
336
328
  - spec/dummy/public/422.html
337
329
  - spec/dummy/public/500.html
338
330
  - spec/dummy/public/favicon.ico
339
- - spec/dummy/script/rails
340
331
  - spec/lib/g5_sibling_deployer_engine_spec.rb
341
332
  - spec/models/sibling/deploy_spec.rb
342
333
  - spec/models/sibling/instruction_spec.rb