compass_ae_starter_kit 4.0.0 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7baaab033c22ec1dfef2f594112507ad12cb3e6e
4
- data.tar.gz: 39f0667cebe1e8986263e4c7125b1adffb769c5d
3
+ metadata.gz: 1f5fa331970979c22bcc19ffe865bf51c859b25f
4
+ data.tar.gz: a84e2b9a04534ef1aba10ad7b5d125813b9960b5
5
5
  SHA512:
6
- metadata.gz: 395ffb7bde6992df499a1d81da878bae5b3e500b891d6c7b46992708534e3ed6e607e8f69b6476725e90d2d54ca7d38be4005740c00dd17fe5a5b6d990a606b3
7
- data.tar.gz: 2d3fef3cac4641c6cb7326ecf5080ee441da7d73de17df7db83ecfe31ccca2b05a50108d72d167ae3d7747c665b35cfa0348037d1cf3a4f4b24db07fa4548360
6
+ metadata.gz: 98a875a5d60e90fa785146ad198df78c73871c95126dd7f05ed66ceecc1420cb067b1962381d011a7851eac8c0547bfccce06ad2b8b0938c4de96bdce6478910
7
+ data.tar.gz: 91b685b326b1fdd86a70951082da1d1f717099ac0e7429e50734664d8f0d019c7dc23f3724d92b3ac9438a86ffca93fa3e46f8ae409cf5e8021697efea08f8c5
@@ -1,38 +1,38 @@
1
- load File.join(File.dirname(__FILE__),'../file_support.rb')
1
+ load File.join(File.dirname(__FILE__), '../file_support.rb')
2
2
 
3
3
  File.unlink 'public/index.html' rescue Errno::ENOENT
4
- FileUtils.cp File.join(File.dirname(__FILE__),'../../../public','index.html'), 'public/index.html'
4
+ FileUtils.cp File.join(File.dirname(__FILE__), '../../../public', 'index.html'), 'public/index.html'
5
5
 
6
6
  CompassAeStarterKit::FileSupport.patch_file 'config/initializers/session_store.rb',
7
- "# #{app_const}.config.session_store :active_record_store",
8
- "#{app_const}.config.session_store :active_record_store #use active_record for session storage, this is needed for knitkit",
9
- :patch_mode => :change
7
+ "# #{app_const}.config.session_store :active_record_store",
8
+ "#{app_const}.config.session_store :active_record_store #use active_record for session storage, this is needed for knitkit",
9
+ :patch_mode => :change
10
10
 
11
11
  CompassAeStarterKit::FileSupport.patch_file 'config/routes.rb',
12
- "#{app_const}.routes.draw do",
13
- " #mount CompassAE engines
12
+ "#{app_const}.routes.draw do",
13
+ " #mount CompassAE engines
14
14
  ErpBaseErpSvcs.mount_compass_ae_engines(self)",
15
- :patch_mode => :insert_after
15
+ :patch_mode => :insert_after
16
16
 
17
17
  CompassAeStarterKit::FileSupport.patch_file 'config/environments/production.rb',
18
- " config.serve_static_assets = false",
19
- " config.serve_static_assets = true",
20
- :patch_mode => :change
18
+ " config.serve_static_assets = false",
19
+ " config.serve_static_assets = true",
20
+ :patch_mode => :change
21
21
 
22
- CompassAeStarterKit::FileSupport.patch_file 'config/environments/production.rb',
23
- " config.assets.compile = false",
24
- " config.assets.compile = true",
25
- :patch_mode => :change
22
+ CompassAeStarterKit::FileSupport.patch_file 'app/assets/javascripts/application.js',
23
+ " //= require_tree .",
24
+ " // require_tree. (this was removed by CompassAE because CompassAE loads different assets based on the application container you are using)",
25
+ :patch_mode => :change
26
26
 
27
27
  CompassAeStarterKit::FileSupport.append_file 'Gemfile',
28
- "
29
- gem 'erp_base_erp_svcs', '~> 4.0'
30
- gem 'erp_tech_svcs', '4.0'
31
- gem 'compass_ae_sencha', '2.0'
32
- gem 'erp_app', '4.0'
33
- gem 'knitkit', '3.0'
34
- gem 'rails_db_admin', '3.0'
35
- gem 'compass_ae_console', '3.0'
28
+ "
29
+ gem 'erp_base_erp_svcs', '~> 4.2'
30
+ gem 'erp_tech_svcs', '~> 4.2'
31
+ gem 'compass_ae_sencha', '~> 2.2'
32
+ gem 'erp_app', '~> 4.2'
33
+ gem 'knitkit', '~> 3.2'
34
+ gem 'rails_db_admin', '~> 3.2'
35
+ gem 'compass_ae_console', '~> 3.2'
36
36
  "
37
37
  puts <<-end
38
38
 
@@ -1,28 +1,28 @@
1
- load File.join(File.dirname(__FILE__),'../file_support.rb')
1
+ load File.join(File.dirname(__FILE__), '../file_support.rb')
2
2
 
3
3
  File.unlink 'public/index.html' rescue Errno::ENOENT
4
- FileUtils.cp File.join(File.dirname(__FILE__),'../../../public','index.html'), 'public/index.html'
4
+ FileUtils.cp File.join(File.dirname(__FILE__), '../../../public', 'index.html'), 'public/index.html'
5
5
 
6
6
  CompassAeStarterKit::FileSupport.patch_file 'config/initializers/session_store.rb',
7
- "# #{app_const}.config.session_store :active_record_store",
8
- "#{app_const}.config.session_store :active_record_store #use active_record for session storage, this is needed for knitkit",
9
- :patch_mode => :change
7
+ "# #{app_const}.config.session_store :active_record_store",
8
+ "#{app_const}.config.session_store :active_record_store #use active_record for session storage, this is needed for knitkit",
9
+ :patch_mode => :change
10
10
 
11
11
  CompassAeStarterKit::FileSupport.patch_file 'config/routes.rb',
12
- "#{app_const}.routes.draw do",
13
- " #mount CompassAE engines
12
+ "#{app_const}.routes.draw do",
13
+ " #mount CompassAE engines
14
14
  ErpBaseErpSvcs.mount_compass_ae_engines(self)",
15
- :patch_mode => :insert_after
15
+ :patch_mode => :insert_after
16
16
 
17
17
  CompassAeStarterKit::FileSupport.patch_file 'config/environments/production.rb',
18
- " config.serve_static_assets = false",
19
- " config.serve_static_assets = true",
20
- :patch_mode => :change
18
+ " config.serve_static_assets = false",
19
+ " config.serve_static_assets = true",
20
+ :patch_mode => :change
21
21
 
22
- CompassAeStarterKit::FileSupport.patch_file 'config/environments/production.rb',
23
- " config.assets.compile = false",
24
- " config.assets.compile = true",
25
- :patch_mode => :change
22
+ CompassAeStarterKit::FileSupport.patch_file 'app/assets/javascripts/application.js',
23
+ " //= require_tree .",
24
+ " // require_tree. (this was removed by CompassAE because CompassAE loads different assets based on the application container you are using)",
25
+ :patch_mode => :change
26
26
 
27
27
  git :clone => 'git://github.com/portablemind/compass_agile_enterprise.git "lib/compass_agile_enterprise"'
28
28
 
@@ -31,7 +31,7 @@ inside('lib/compass_agile_enterprise') do
31
31
  end
32
32
 
33
33
  CompassAeStarterKit::FileSupport.append_file 'Gemfile',
34
- "
34
+ "
35
35
  path './lib/compass_agile_enterprise' do
36
36
  gem 'erp_base_erp_svcs'
37
37
  gem 'erp_tech_svcs'
@@ -1,7 +1,7 @@
1
1
  module CompassAeStarterKit
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 4
4
- MINOR = 0
4
+ MINOR = 2
5
5
  TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
@@ -57,24 +57,24 @@ body {
57
57
 
58
58
  <div class="Table_01">
59
59
  <div class="compass-logo_">
60
- <img id="compass_logo" src="images/art/compass-ae-logo-reverse-1.png" alt="" />
60
+ <img id="compass_logo" src="assets/art/desktop-logo.png" alt="" />
61
61
  </div>
62
62
  <div class="browse-docs-icon_">
63
63
  <a href="https://www.truenorthtechnology.com" style="border-style: none;" target="_blank">
64
- <img id="browse_docs_icon" src="images/splash_screen/browse_docs_icon.png" width="285" height="254" alt="" />
64
+ <img id="browse_docs_icon" src="assets/splash_screen/browse_docs_icon.png" width="285" height="254" alt="" />
65
65
  </a>
66
66
  </div>
67
67
  <div class="desktop-icon_">
68
68
  <a href="/erp_app/login" style="border-style: none;" target="_blank">
69
- <img id="desktop_icon" src="images/splash_screen/desktop_icon.png" width="214" height="254" alt="" />
69
+ <img id="desktop_icon" src="assets/splash_screen/desktop_icon.png" width="214" height="254" alt="" />
70
70
  </a>
71
71
  </div>
72
72
  <div class="contact-mgt-icon_">
73
73
  <a href="/erp_app/login/csr" style="border-style: none;" target="_blank">
74
- <img id="contact_mgt_icon" src="images/splash_screen/contact_mgt_icon.png" width="295" height="254" alt="" style="border-style: none;"/>
74
+ <img id="contact_mgt_icon" src="assets/splash_screen/contact_mgt_icon.png" width="295" height="254" alt="" style="border-style: none;"/>
75
75
  </a>
76
76
  </div>
77
77
  </div>
78
78
 
79
79
  </body>
80
- </html>
80
+ </html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass_ae_starter_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Koloski, Russell Holmes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2016-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  version: '0'
135
135
  requirements: []
136
136
  rubyforge_project:
137
- rubygems_version: 2.2.2
137
+ rubygems_version: 2.4.8
138
138
  signing_key:
139
139
  specification_version: 4
140
140
  summary: Gem to help get the Compass AE framework up a running