g5_sibling_deployer_engine 0.6.3 → 0.7.0

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
2
  SHA1:
3
- metadata.gz: 15965d42549ba7b475168f0cca2aee969a351e12
4
- data.tar.gz: 1227a656cad321e1d9d327237a546ce32003bea8
3
+ metadata.gz: bf71d48871adbfa739077026d1c7c1dcb1b21563
4
+ data.tar.gz: 1d99bc289f2721eb9ce9179eddf4776f21dc40ab
5
5
  SHA512:
6
- metadata.gz: dbc624e6e28f4a726c2d28e908398313d3bd2e8f9688ea0a0fb70cc71b42644ccfd6915ffd01b05b46deeb1ec07a20c8b54318a4b9d4065536f5354e083d81ef
7
- data.tar.gz: 5b01d44ab7583866e3e678cf070f1df4dd21ebe6455ce94f19b4386853ce5fed41e57ebddac2e0d2dc82c443c85d8b0310e7e3e88cee0cb532e1a491f8adb0e8
6
+ metadata.gz: 81e1a2ae004d6caada89c57f8867a6b438fdee4c6973996850e94272cef76d05fa9a99eb413530bcc2ed11401e059fdb37235be16f73f72271f67614bf3490a5
7
+ data.tar.gz: 17e587af76e02f09f0b9cf001c7f737e392c12eef8b33b1cf30e6d9f1ba97601edfabe14c569616490e4eb16611f1d3307acbdc062ddff9e781a17ae9b30d671
@@ -2,6 +2,9 @@ language: ruby
2
2
  rvm:
3
3
  - 2.1.1
4
4
  script: bundle exec rspec
5
+ before_script:
6
+ - cp spec/dummy/config/database.travis.yml spec/dummy/config/database.yml
7
+ - pushd spec/dummy/; rake db:create db:migrate; popd
5
8
  notifications:
6
9
  campfire:
7
10
  rooms:
data/README.md CHANGED
@@ -8,7 +8,7 @@ Provides models, views, controllers, routes, and rake tasks for deploying Siblin
8
8
 
9
9
  ## Current Version
10
10
 
11
- 0.6.2
11
+ 0.7.0
12
12
 
13
13
 
14
14
  ## Requirements
@@ -41,6 +41,11 @@ class Sibling < ActiveRecord::Base
41
41
  def deploy_all(manual=true, instruction_id=nil)
42
42
  all.each { |sibling| sibling.deploy(instruction_id) }
43
43
  end
44
+
45
+ def deploy_some(kinds=[], instruction_id=nil)
46
+ apps = kinds.flat_map { |k| Sibling.where('name LIKE ?', "%-#{k}-%") }
47
+ apps.each { |sibling| sibling.deploy(instruction_id) }
48
+ end
44
49
  end
45
50
 
46
51
  def deploy(instruction_id=nil)
@@ -46,6 +46,9 @@ class Sibling::Instruction < ActiveRecord::Base
46
46
  hcard = instruction(hentry)
47
47
  instruction.name = hcard.name.to_s
48
48
  instruction.published_at = hentry.updated.value
49
+ if hentry.try(:g5_updated_app_kinds).present?
50
+ instruction.updated_app_kinds = hentry.g5_updated_app_kinds.map(&:to_s)
51
+ end
49
52
  end
50
53
  end
51
54
  end # class << self
@@ -53,6 +56,6 @@ class Sibling::Instruction < ActiveRecord::Base
53
56
  private
54
57
 
55
58
  def deploy
56
- Sibling.deploy_all(true, self.id)
59
+ Sibling.deploy_some(self.updated_app_kinds, self.id)
57
60
  end
58
61
  end
@@ -0,0 +1,5 @@
1
+ class AddUpdatedAppKindsToInstruction < ActiveRecord::Migration
2
+ def change
3
+ add_column :sibling_instructions, :updated_app_kinds, :string, array: true, default: []
4
+ end
5
+ end
@@ -23,6 +23,7 @@ Gem::Specification.new do |gem|
23
23
  gem.add_dependency "heroku_resque_autoscaler", "~> 0.1.0"
24
24
  gem.add_dependency "microformats2", "~> 2.0.0"
25
25
  gem.add_dependency "github_heroku_deployer", "~> 0.4"
26
+ gem.add_dependency "pg", "~> 0.18.1"
26
27
 
27
28
  gem.add_development_dependency "sqlite3", "~> 1.3.6"
28
29
  gem.add_development_dependency "simplecov", "~> 0.8.2"
@@ -1,3 +1,3 @@
1
1
  module G5SiblingDeployerEngine
2
- VERSION = "0.6.3"
2
+ VERSION = "0.7.0"
3
3
  end
@@ -0,0 +1,4 @@
1
+ test:
2
+ adapter: postgresql
3
+ database: travis_ci_test
4
+ username: postgres
@@ -4,19 +4,19 @@
4
4
  # Ensure the SQLite 3 gem is defined in your Gemfile
5
5
  # gem 'sqlite3'
6
6
  development:
7
- adapter: sqlite3
8
- database: db/development.sqlite3
9
- pool: 5
10
- timeout: 5000
7
+ host: localhost
8
+ adapter: postgresql
9
+ database: g5_sibling_deployer_engine_development
10
+ #user: username
11
11
 
12
12
  # Warning: The database defined as "test" will be erased and
13
13
  # re-generated from your development database when you run "rake".
14
14
  # Do not set this db to the same as development or production.
15
15
  test:
16
- adapter: sqlite3
17
- database: db/test.sqlite3
18
- pool: 5
19
- timeout: 5000
16
+ host: localhost
17
+ adapter: postgresql
18
+ database: g5_sibling_deployer_engine_development
19
+ #user: username
20
20
 
21
21
  production:
22
22
  adapter: sqlite3
@@ -0,0 +1,15 @@
1
+ # This migration comes from g5_sibling_deployer_engine_engine (originally 1)
2
+ class CreateSiblings < ActiveRecord::Migration
3
+ def change
4
+ create_table :siblings do |t|
5
+ t.string :uid
6
+ t.string :name
7
+ t.string :git_repo
8
+ t.string :heroku_repo
9
+ t.string :heroku_app_name
10
+ t.boolean :main_app
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,16 @@
1
+ # This migration comes from g5_sibling_deployer_engine_engine (originally 2)
2
+ class CreateSiblingDeploys < ActiveRecord::Migration
3
+ def change
4
+ create_table :sibling_deploys do |t|
5
+ t.references :sibling
6
+ t.references :instruction
7
+ t.boolean :manual
8
+ t.string :state
9
+ t.string :git_repo
10
+ t.string :heroku_repo
11
+ t.string :heroku_app_name
12
+
13
+ t.timestamps
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,12 @@
1
+ # This migration comes from g5_sibling_deployer_engine_engine (originally 3)
2
+ class CreateSiblingInstructions < ActiveRecord::Migration
3
+ def change
4
+ create_table :sibling_instructions do |t|
5
+ t.string :uid
6
+ t.string :name
7
+ t.datetime :published_at
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,6 @@
1
+ # This migration comes from g5_sibling_deployer_engine_engine (originally 4)
2
+ class AddUpdatedAppKindsToInstruction < ActiveRecord::Migration
3
+ def change
4
+ add_column :sibling_instructions, :updated_app_kinds, :string, array: true, default: []
5
+ end
6
+ end
@@ -9,11 +9,14 @@
9
9
  # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
10
  # you'll amass, the slower it'll run and the greater likelihood for issues).
11
11
  #
12
- # It's strongly recommended to check this file into your version control system.
12
+ # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 3) do
14
+ ActiveRecord::Schema.define(version: 20150430182536) do
15
15
 
16
- create_table "sibling_deploys", :force => true do |t|
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "sibling_deploys", force: true do |t|
17
20
  t.integer "sibling_id"
18
21
  t.integer "instruction_id"
19
22
  t.boolean "manual"
@@ -21,27 +24,28 @@ ActiveRecord::Schema.define(:version => 3) do
21
24
  t.string "git_repo"
22
25
  t.string "heroku_repo"
23
26
  t.string "heroku_app_name"
24
- t.datetime "created_at", :null => false
25
- t.datetime "updated_at", :null => false
27
+ t.datetime "created_at"
28
+ t.datetime "updated_at"
26
29
  end
27
30
 
28
- create_table "sibling_instructions", :force => true do |t|
31
+ create_table "sibling_instructions", force: true do |t|
29
32
  t.string "uid"
30
33
  t.string "name"
31
34
  t.datetime "published_at"
32
- t.datetime "created_at", :null => false
33
- t.datetime "updated_at", :null => false
35
+ t.datetime "created_at"
36
+ t.datetime "updated_at"
37
+ t.string "updated_app_kinds", default: [], array: true
34
38
  end
35
39
 
36
- create_table "siblings", :force => true do |t|
40
+ create_table "siblings", force: true do |t|
37
41
  t.string "uid"
38
42
  t.string "name"
39
43
  t.string "git_repo"
40
44
  t.string "heroku_repo"
41
45
  t.string "heroku_app_name"
42
46
  t.boolean "main_app"
43
- t.datetime "created_at", :null => false
44
- t.datetime "updated_at", :null => false
47
+ t.datetime "created_at"
48
+ t.datetime "updated_at"
45
49
  end
46
50
 
47
51
  end
@@ -56,6 +56,16 @@ describe Sibling do
56
56
  Sibling.deploy_all
57
57
  end
58
58
  end
59
+ describe ".deploy_some" do
60
+ before :each do
61
+ Sibling.consume_main_app_hcard
62
+ Sibling.any_instance.stub(:deploy)
63
+ end
64
+ it "deploys sibling apps" do
65
+ Sibling.any_instance.should_receive(:deploy).exactly(1).times
66
+ Sibling.deploy_some(["ch"])
67
+ end
68
+ end
59
69
  describe "#deploy" do
60
70
  before :each do
61
71
  Sibling::Deploy.any_instance.stub(:async_deploy)
@@ -64,34 +64,55 @@
64
64
  <span class="span2"><a href="/apps" class="btn">Apps</a></span>
65
65
  </div>
66
66
 
67
+ <section class="well">
68
+ <div class="h-card">
69
+ <h2 class="p-name">
70
+ <a href="http://g5-configurator.dev/apps/g5-chd-1-metro-self-storage" class="u-uid u-url">g5-chd-1-metro-self-storage</a>
71
+ </h2>
72
+ <p class="p-org h-card">
73
+ <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
74
+ </p>
75
+ <p>
76
+ <p><a href="git@github.com:g5search/g5-sibling-deployer.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-sibling-deployer.git</a></p>
77
+ <p><a href="git@heroku.com:g5-chd-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-chd-1-metro-self-storage.git</a></p>
78
+ <p><a href="http://g5-chd-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-chd-1-metro-self-storage</a></p>
79
+ <div class="p-g5-sibling h-card">
80
+ <h3>
81
+ sibling of <a href="http://g5-configurator.dev/apps/g5-chd-1-metro-self-storage" class="p-name u-uid u-url">g5-ch-1-metro-self-storage</a>
82
+ </h3>
83
+ <p class="p-org h-card">
84
+ <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
85
+ </p>
86
+ <p><a href="git@github.com:g5search/g5-content-management-system.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-content-management-system.git</a></p>
87
+ <p><a href="git@heroku.com:g5-ch-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-ch-1-metro-self-storage.git</a></p>
88
+ <p><a href="http://g5-ch-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-ch-1-metro-self-storage</a></p>
89
+ </div>
90
+ </div>
67
91
 
68
- <section class="well">
69
- <div class="h-card">
70
- <h2 class="p-name">
71
- <a href="http://g5-configurator.dev/apps/g5-chd-1-metro-self-storage" class="u-uid u-url">g5-chd-1-metro-self-storage</a>
72
- </h2>
73
- <p class="p-org h-card">
74
- <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
75
- </p>
76
- <p>
77
- <p><a href="git@github.com:g5search/g5-sibling-deployer.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-sibling-deployer.git</a></p>
78
- <p><a href="git@heroku.com:g5-chd-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-chd-1-metro-self-storage.git</a></p>
79
- <p><a href="http://g5-chd-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-chd-1-metro-self-storage</a></p>
80
- <div class="p-g5-sibling h-card">
81
- <h3>
82
- sibling of <a href="http://g5-configurator.dev/apps/g5-chd-1-metro-self-storage" class="p-name u-uid u-url">g5-ch-1-metro-self-storage</a>
83
- </h3>
84
- <p class="p-org h-card">
85
- <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
86
- </p>
87
- <p><a href="git@github.com:g5search/g5-content-management-system.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-content-management-system.git</a></p>
88
- <p><a href="git@heroku.com:g5-ch-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-ch-1-metro-self-storage.git</a></p>
89
- <p><a href="http://g5-ch-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-ch-1-metro-self-storage</a></p>
90
- </div>
91
- </div>
92
-
93
- </section>
94
-
92
+ <div class="h-card">
93
+ <h2 class="p-name">
94
+ <a href="http://g5-configurator.dev/apps/g5-che-1-metro-self-storage" class="u-uid u-url">g5-che-1-metro-self-storage</a>
95
+ </h2>
96
+ <p class="p-org h-card">
97
+ <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
98
+ </p>
99
+ <p>
100
+ <p><a href="git@github.com:g5search/g5-sibling-deployer.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-sibling-deployer.git</a></p>
101
+ <p><a href="git@heroku.com:g5-che-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-che-1-metro-self-storage.git</a></p>
102
+ <p><a href="http://g5-che-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-che-1-metro-self-storage</a></p>
103
+ <div class="p-g5-sibling h-card">
104
+ <h3>
105
+ sibling of <a href="http://g5-configurator.dev/apps/g5-che-1-metro-self-storage" class="p-name u-uid u-url">g5-ch-1-metro-self-storage</a>
106
+ </h3>
107
+ <p class="p-org h-card">
108
+ <a href="http://g5-hub.dev/clients/g5-c-1-metro-self-storage" class="p-name u-uid u-url">Metro Self Storage</a>
109
+ </p>
110
+ <p><a href="git@github.com:g5search/g5-content-management-system.git" class="u-g5-git-repo u-url">git@github.com:g5search/g5-content-management-system.git</a></p>
111
+ <p><a href="git@heroku.com:g5-ch-1-metro-self-storage.git" class="u-g5-heroku-repo u-url">git@heroku.com:g5-ch-1-metro-self-storage.git</a></p>
112
+ <p><a href="http://g5-ch-1-metro-self-storage.herokuapp.com" class="p-g5-heroku-app-name u-g5-heroku-repo u-url">g5-ch-1-metro-self-storage</a></p>
113
+ </div>
114
+ </div>
115
+ </section>
95
116
 
96
117
  </div>
97
118
  </body>
@@ -150,6 +150,18 @@
150
150
  <a href="http://g5-configurator.dev/apps/g5-chd-1-metro-self-storage" class="p-name u-uid u-url">g5-chd-1-metro-self-storage</a>
151
151
  </li>
152
152
  </ul>
153
+ <h4>Updated Apps</h4>
154
+ <ul>
155
+ <li class="p-g5-updated-app-kind h-card">
156
+ <a class="p-g5-kind" href="/entries">ch</a>
157
+ </li>
158
+ <li class="p-g5-updated-app-kind h-card">
159
+ <a class="p-g5-kind" href="/entries">cxm</a>
160
+ </li>
161
+ <li class="p-g5-updated-app-kind h-card">
162
+ <a class="p-g5-kind" href="/entries">dsh</a>
163
+ </li>
164
+ </ul>
153
165
  </div>
154
166
 
155
167
  </div>
metadata CHANGED
@@ -1,167 +1,181 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: g5_sibling_deployer_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.7.0
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: 2015-04-03 00:00:00.000000000 Z
11
+ date: 2015-05-07 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
19
  version: 4.1.4
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
26
  version: 4.1.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: state_machine
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.2.0
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
40
  version: 1.2.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: heroku_resque_autoscaler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.1.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
54
  version: 0.1.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: microformats2
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
61
  version: 2.0.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
68
  version: 2.0.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: github_heroku_deployer
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ~>
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0.4'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ~>
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pg
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 0.18.1
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 0.18.1
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: sqlite3
85
99
  requirement: !ruby/object:Gem::Requirement
86
100
  requirements:
87
- - - "~>"
101
+ - - ~>
88
102
  - !ruby/object:Gem::Version
89
103
  version: 1.3.6
90
104
  type: :development
91
105
  prerelease: false
92
106
  version_requirements: !ruby/object:Gem::Requirement
93
107
  requirements:
94
- - - "~>"
108
+ - - ~>
95
109
  - !ruby/object:Gem::Version
96
110
  version: 1.3.6
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: simplecov
99
113
  requirement: !ruby/object:Gem::Requirement
100
114
  requirements:
101
- - - "~>"
115
+ - - ~>
102
116
  - !ruby/object:Gem::Version
103
117
  version: 0.8.2
104
118
  type: :development
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
107
121
  requirements:
108
- - - "~>"
122
+ - - ~>
109
123
  - !ruby/object:Gem::Version
110
124
  version: 0.8.2
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: rspec-rails
113
127
  requirement: !ruby/object:Gem::Requirement
114
128
  requirements:
115
- - - "~>"
129
+ - - ~>
116
130
  - !ruby/object:Gem::Version
117
131
  version: 2.14.1
118
132
  type: :development
119
133
  prerelease: false
120
134
  version_requirements: !ruby/object:Gem::Requirement
121
135
  requirements:
122
- - - "~>"
136
+ - - ~>
123
137
  - !ruby/object:Gem::Version
124
138
  version: 2.14.1
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: guard-rspec
127
141
  requirement: !ruby/object:Gem::Requirement
128
142
  requirements:
129
- - - "~>"
143
+ - - ~>
130
144
  - !ruby/object:Gem::Version
131
145
  version: 4.2.8
132
146
  type: :development
133
147
  prerelease: false
134
148
  version_requirements: !ruby/object:Gem::Requirement
135
149
  requirements:
136
- - - "~>"
150
+ - - ~>
137
151
  - !ruby/object:Gem::Version
138
152
  version: 4.2.8
139
153
  - !ruby/object:Gem::Dependency
140
154
  name: spork
141
155
  requirement: !ruby/object:Gem::Requirement
142
156
  requirements:
143
- - - "~>"
157
+ - - ~>
144
158
  - !ruby/object:Gem::Version
145
159
  version: 0.9.2
146
160
  type: :development
147
161
  prerelease: false
148
162
  version_requirements: !ruby/object:Gem::Requirement
149
163
  requirements:
150
- - - "~>"
164
+ - - ~>
151
165
  - !ruby/object:Gem::Version
152
166
  version: 0.9.2
153
167
  - !ruby/object:Gem::Dependency
154
168
  name: rb-fsevent
155
169
  requirement: !ruby/object:Gem::Requirement
156
170
  requirements:
157
- - - "~>"
171
+ - - ~>
158
172
  - !ruby/object:Gem::Version
159
173
  version: 0.9.2
160
174
  type: :development
161
175
  prerelease: false
162
176
  version_requirements: !ruby/object:Gem::Requirement
163
177
  requirements:
164
- - - "~>"
178
+ - - ~>
165
179
  - !ruby/object:Gem::Version
166
180
  version: 0.9.2
167
181
  description: Rails Engine for G5 sibling deployers
@@ -171,9 +185,9 @@ executables: []
171
185
  extensions: []
172
186
  extra_rdoc_files: []
173
187
  files:
174
- - ".gitignore"
175
- - ".rspec"
176
- - ".travis.yml"
188
+ - .gitignore
189
+ - .rspec
190
+ - .travis.yml
177
191
  - Gemfile
178
192
  - Guardfile
179
193
  - LICENSE.txt
@@ -201,6 +215,7 @@ files:
201
215
  - db/migrate/001_create_siblings.rb
202
216
  - db/migrate/002_create_sibling_deploys.rb
203
217
  - db/migrate/003_create_sibling_instructions.rb
218
+ - db/migrate/004_add_updated_app_kinds_to_instruction.rb
204
219
  - g5_sibling_deployer_engine.gemspec
205
220
  - lib/g5_sibling_deployer_engine.rb
206
221
  - lib/g5_sibling_deployer_engine/engine.rb
@@ -227,6 +242,7 @@ files:
227
242
  - spec/dummy/config.ru
228
243
  - spec/dummy/config/application.rb
229
244
  - spec/dummy/config/boot.rb
245
+ - spec/dummy/config/database.travis.yml
230
246
  - spec/dummy/config/database.yml
231
247
  - spec/dummy/config/environment.rb
232
248
  - spec/dummy/config/environments/development.rb
@@ -241,9 +257,11 @@ files:
241
257
  - spec/dummy/config/initializers/wrap_parameters.rb
242
258
  - spec/dummy/config/locales/en.yml
243
259
  - spec/dummy/config/routes.rb
244
- - spec/dummy/db/development.sqlite3
260
+ - spec/dummy/db/migrate/20150430182533_create_siblings.g5_sibling_deployer_engine_engine.rb
261
+ - spec/dummy/db/migrate/20150430182534_create_sibling_deploys.g5_sibling_deployer_engine_engine.rb
262
+ - spec/dummy/db/migrate/20150430182535_create_sibling_instructions.g5_sibling_deployer_engine_engine.rb
263
+ - spec/dummy/db/migrate/20150430182536_add_updated_app_kinds_to_instruction.g5_sibling_deployer_engine_engine.rb
245
264
  - spec/dummy/db/schema.rb
246
- - spec/dummy/db/test.sqlite3
247
265
  - spec/dummy/lib/assets/.keep
248
266
  - spec/dummy/log/.keep
249
267
  - spec/dummy/public/404.html
@@ -272,17 +290,17 @@ require_paths:
272
290
  - lib
273
291
  required_ruby_version: !ruby/object:Gem::Requirement
274
292
  requirements:
275
- - - ">="
293
+ - - '>='
276
294
  - !ruby/object:Gem::Version
277
295
  version: '0'
278
296
  required_rubygems_version: !ruby/object:Gem::Requirement
279
297
  requirements:
280
- - - ">="
298
+ - - '>='
281
299
  - !ruby/object:Gem::Version
282
300
  version: '0'
283
301
  requirements: []
284
302
  rubyforge_project:
285
- rubygems_version: 2.2.0
303
+ rubygems_version: 2.2.2
286
304
  signing_key:
287
305
  specification_version: 4
288
306
  summary: Rails Engine for G5 sibling deployers
@@ -306,6 +324,7 @@ test_files:
306
324
  - spec/dummy/config.ru
307
325
  - spec/dummy/config/application.rb
308
326
  - spec/dummy/config/boot.rb
327
+ - spec/dummy/config/database.travis.yml
309
328
  - spec/dummy/config/database.yml
310
329
  - spec/dummy/config/environment.rb
311
330
  - spec/dummy/config/environments/development.rb
@@ -320,9 +339,11 @@ test_files:
320
339
  - spec/dummy/config/initializers/wrap_parameters.rb
321
340
  - spec/dummy/config/locales/en.yml
322
341
  - spec/dummy/config/routes.rb
323
- - spec/dummy/db/development.sqlite3
342
+ - spec/dummy/db/migrate/20150430182533_create_siblings.g5_sibling_deployer_engine_engine.rb
343
+ - spec/dummy/db/migrate/20150430182534_create_sibling_deploys.g5_sibling_deployer_engine_engine.rb
344
+ - spec/dummy/db/migrate/20150430182535_create_sibling_instructions.g5_sibling_deployer_engine_engine.rb
345
+ - spec/dummy/db/migrate/20150430182536_add_updated_app_kinds_to_instruction.g5_sibling_deployer_engine_engine.rb
324
346
  - spec/dummy/db/schema.rb
325
- - spec/dummy/db/test.sqlite3
326
347
  - spec/dummy/lib/assets/.keep
327
348
  - spec/dummy/log/.keep
328
349
  - spec/dummy/public/404.html
@@ -342,4 +363,3 @@ test_files:
342
363
  - spec/workers/sibling_consumer_spec.rb
343
364
  - spec/workers/sibling_deployer_spec.rb
344
365
  - spec/workers/sibling_instruction_consumer_spec.rb
345
- has_rdoc: