erp_dev_svcs 3.1.0 → 4.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 135bc409109a7adc3583915493a297c5c126aba5
4
+ data.tar.gz: 8e19ef1a3d870397e0ddb6c06bb1bf7514a014a5
5
+ SHA512:
6
+ metadata.gz: bbe581f2f77a3e3f72a5d65df5f28b0e1955fcef31b07f0544305d2657f22e092b0d591b0411d9a21cb64b452223a23a9dc4b13b651d682373cdfe1a48032c13
7
+ data.tar.gz: 2004f67c70147bf84b8f3aa3f8c7aae517f6ff2a3320631977ff1c11005db8b71554da29277413fe400603fe7a3240b6e7cd5c1236be790fcf5f83b01a0a5cbc
@@ -50,7 +50,7 @@ module ErpDevSvcs
50
50
  #that array
51
51
  def self.exec_in_engines(only_in_these_gems = nil)
52
52
 
53
- code_dirs = [COMPASS_ROOT, COMMERCIAL_ROOT]
53
+ code_dirs = [COMPASS_ROOT]
54
54
  code_dirs.each do |code_dir|
55
55
  begin
56
56
  find_rails_root!
@@ -69,6 +69,7 @@ module ErpDevSvcs
69
69
  #set engine name to the submatch via "[1]"
70
70
  engine_name = /(.*).gemspec/.match(gemspec[2])[1]
71
71
 
72
+
72
73
  if only_in_these_gems.nil? || only_in_these_gems.include?(engine_name)
73
74
  Dir.chdir(gemspec[1])
74
75
  #pass in the engine name
@@ -118,7 +119,6 @@ module ErpDevSvcs
118
119
  :erp_dev_svcs,
119
120
  :erp_tech_svcs,
120
121
  :erp_app,
121
- :erp_forms,
122
122
  :erp_agreements,
123
123
  :erp_products,
124
124
  :erp_orders,
@@ -21,7 +21,7 @@ module ErpDevSvcs
21
21
  "List of engines to operate on;"\
22
22
  "defaults to all") {|engines| options[:engines] = engines}
23
23
  opt.on("-c", "--create-gemfiles", nil,
24
- "Create Gemfiles in engines from Gemfile.example") do |x|
24
+ "Create Gemfiles in engines from Gemfile") do |x|
25
25
  options[:create_gemfiles] = true
26
26
  end
27
27
  opt.on("-b", "--bundle-engines", nil,
@@ -41,9 +41,9 @@ module ErpDevSvcs
41
41
 
42
42
  ErpDevSvcs::Commands::Helper.exec_in_engines(options[:engines]) do |engine_name|
43
43
  puts "\nOperating on engine #{engine_name}... \n"
44
- puts %x[cp Gemfile.example Gemfile] if options[:create_gemfiles] == true
44
+ puts %x[cp Gemfile Gemfile] if options[:create_gemfiles] == true
45
45
  puts %x[bundle update] if options[:bundle] == true
46
- #result = %x[cp Gemfile.example Gemfile]
46
+ #result = %x[cp Gemfile Gemfile]
47
47
  #puts result
48
48
  end
49
49
  end
@@ -1,9 +1,13 @@
1
1
  module ErpDevSvcs
2
2
  module VERSION #:nodoc:
3
- MAJOR = 3
4
- MINOR = 1
3
+ MAJOR = 4
4
+ MINOR = 0
5
5
  TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
8
8
  end
9
+
10
+ def self.version
11
+ ErpDevSvcs::VERSION::STRING
12
+ end
9
13
  end
metadata CHANGED
@@ -1,32 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erp_dev_svcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
5
- prerelease:
4
+ version: 4.0.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rick Koloski, Russell Holmes
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-01-11 00:00:00.000000000 Z
11
+ date: 2014-11-19 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: erp_base_erp_svcs
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
- version: '3.1'
19
+ version: '4.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '3.1'
26
+ version: '4.0'
30
27
  description: This engine exists as development support for CompassAE.
31
28
  email:
32
29
  - russonrails@gmail.com
@@ -35,12 +32,12 @@ executables:
35
32
  extensions: []
36
33
  extra_rdoc_files: []
37
34
  files:
38
- - app/assets/javascripts/erp_dev_svcs/application.js
39
- - app/assets/stylesheets/erp_dev_svcs/application.css
40
- - app/controllers/erp_dev_svcs/application_controller.rb
41
- - app/helpers/erp_dev_svcs/application_helper.rb
42
- - app/views/layouts/erp_dev_svcs/application.html.erb
35
+ - GPL-3-LICENSE
36
+ - README.rdoc
37
+ - Rakefile
38
+ - bin/compass_ae-dev
43
39
  - config/routes.rb
40
+ - lib/erp_dev_svcs.rb
44
41
  - lib/erp_dev_svcs/commands/build_gems.rb
45
42
  - lib/erp_dev_svcs/commands/git.rb
46
43
  - lib/erp_dev_svcs/commands/helper.rb
@@ -53,16 +50,14 @@ files:
53
50
  - lib/erp_dev_svcs/engine.rb
54
51
  - lib/erp_dev_svcs/factory_support.rb
55
52
  - lib/erp_dev_svcs/version.rb
56
- - lib/erp_dev_svcs.rb
57
53
  - lib/tasks/erp_dev_svcs_tasks.rake
58
- - GPL-3-LICENSE
59
- - Rakefile
60
- - README.rdoc
54
+ - spec/dummy/Rakefile
61
55
  - spec/dummy/app/assets/javascripts/application.js
62
56
  - spec/dummy/app/assets/stylesheets/application.css
63
57
  - spec/dummy/app/controllers/application_controller.rb
64
58
  - spec/dummy/app/helpers/application_helper.rb
65
59
  - spec/dummy/app/views/layouts/application.html.erb
60
+ - spec/dummy/config.ru
66
61
  - spec/dummy/config/application.rb
67
62
  - spec/dummy/config/boot.rb
68
63
  - spec/dummy/config/database.yml
@@ -76,46 +71,35 @@ files:
76
71
  - spec/dummy/config/initializers/wrap_parameters.rb
77
72
  - spec/dummy/config/locales/en.yml
78
73
  - spec/dummy/config/routes.rb
79
- - spec/dummy/config.ru
80
- - spec/dummy/db/spec.sqlite3
81
- - spec/dummy/log/spec.log
82
74
  - spec/dummy/public/404.html
83
75
  - spec/dummy/public/422.html
84
76
  - spec/dummy/public/500.html
85
77
  - spec/dummy/public/favicon.ico
86
- - spec/dummy/Rakefile
87
78
  - spec/dummy/script/rails
88
79
  - spec/spec_helper.rb
89
- - bin/compass_ae-dev
90
80
  homepage: http://development.compassagile.com
91
- licenses: []
81
+ licenses:
82
+ - GPL-3-LICENSE
83
+ metadata: {}
92
84
  post_install_message:
93
85
  rdoc_options: []
94
86
  require_paths:
95
87
  - lib
96
88
  required_ruby_version: !ruby/object:Gem::Requirement
97
- none: false
98
89
  requirements:
99
- - - ! '>='
90
+ - - ">="
100
91
  - !ruby/object:Gem::Version
101
92
  version: '0'
102
- segments:
103
- - 0
104
- hash: -631967722121798005
105
93
  required_rubygems_version: !ruby/object:Gem::Requirement
106
- none: false
107
94
  requirements:
108
- - - ! '>='
95
+ - - ">="
109
96
  - !ruby/object:Gem::Version
110
97
  version: '0'
111
- segments:
112
- - 0
113
- hash: -631967722121798005
114
98
  requirements: []
115
99
  rubyforge_project:
116
- rubygems_version: 1.8.24
100
+ rubygems_version: 2.2.2
117
101
  signing_key:
118
- specification_version: 3
102
+ specification_version: 4
119
103
  summary: This engine exists to serve as a way to organize code that exists to support
120
104
  the development process, but will not live in the running production code.
121
105
  test_files:
@@ -138,8 +122,6 @@ test_files:
138
122
  - spec/dummy/config/locales/en.yml
139
123
  - spec/dummy/config/routes.rb
140
124
  - spec/dummy/config.ru
141
- - spec/dummy/db/spec.sqlite3
142
- - spec/dummy/log/spec.log
143
125
  - spec/dummy/public/404.html
144
126
  - spec/dummy/public/422.html
145
127
  - spec/dummy/public/500.html
@@ -1,9 +0,0 @@
1
- // This is a manifest file that'll be compiled into including all the files listed below.
2
- // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
- // be included in the compiled file accessible from http://example.com/assets/application.js
4
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
- // the compiled file.
6
- //
7
- //= require jquery
8
- //= require jquery_ujs
9
- //= require_tree .
@@ -1,7 +0,0 @@
1
- /*
2
- * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
- * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
- * the top of the compiled file, but it's generally better to create a new file per style scope.
5
- *= require_self
6
- *= require_tree .
7
- */
@@ -1,4 +0,0 @@
1
- module ErpDevSvcs
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module ErpDevSvcs
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>ErpDevSvcs</title>
5
- <%= stylesheet_link_tag "erp_dev_svcs/application" %>
6
- <%= javascript_include_tag "erp_dev_svcs/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>
File without changes
@@ -1,2 +0,0 @@
1
- Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml