ymdp 0.0.3 → 0.0.4

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -1 +1,17 @@
1
- require 'lib/environment'
1
+ # load application
2
+ #
3
+ Dir["lib/application_view/*.rb"].each do |path|
4
+ require path
5
+ end
6
+
7
+ # load support
8
+ #
9
+ Dir["lib/application_view/support/*.rb"].each do |path|
10
+ require path
11
+ end
12
+
13
+ # load everything in the lib directory
14
+ #
15
+ Dir["lib/**/*.rb"].each do |path|
16
+ require path unless path == File.expand_path(__FILE__)
17
+ end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ymdp}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeff Coleman"]
@@ -28,7 +28,6 @@ Gem::Specification.new do |s|
28
28
  "lib/application_view/commands/generate.rb",
29
29
  "lib/application_view/compiler/template_compiler.rb",
30
30
  "lib/application_view/config.rb",
31
- "lib/application_view/environment.rb",
32
31
  "lib/application_view/generator/base.rb",
33
32
  "lib/application_view/generator/templates/javascript.js",
34
33
  "lib/application_view/generator/templates/stylesheet.css",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ymdp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Coleman
@@ -34,7 +34,6 @@ files:
34
34
  - lib/application_view/commands/generate.rb
35
35
  - lib/application_view/compiler/template_compiler.rb
36
36
  - lib/application_view/config.rb
37
- - lib/application_view/environment.rb
38
37
  - lib/application_view/generator/base.rb
39
38
  - lib/application_view/generator/templates/javascript.js
40
39
  - lib/application_view/generator/templates/stylesheet.css
@@ -1,29 +0,0 @@
1
- require 'fileutils'
2
- require 'erb'
3
- require 'net/http'
4
- require 'optparse'
5
-
6
- require 'vendor/gems/environment'
7
- Bundler.require_env
8
-
9
- require 'constants'
10
-
11
- # load application
12
- #
13
- Dir["#{APPLICATION_PATH}/*.rb"].each do |path|
14
- require path
15
- end
16
-
17
- # load support
18
- #
19
- Dir["#{APPLICATION_PATH}/support/*.rb"].each do |path|
20
- require path
21
- end
22
-
23
- # load everything in the lib directory
24
- #
25
- Dir["#{BASE_PATH}/lib/**/*.rb"].each do |path|
26
- require path unless path == File.expand_path(__FILE__)
27
- end
28
-
29
- require "#{APPLICATION_PATH}/support/file"