modjs-architecture 0.6.1 → 0.6.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.
- data/VERSION +1 -1
- data/lib/modjs-architecture.rb +3 -3
- data/modjs-architecture.gemspec +3 -3
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.2
|
data/lib/modjs-architecture.rb
CHANGED
|
@@ -47,7 +47,7 @@ module ModJS
|
|
|
47
47
|
super
|
|
48
48
|
copy_modjs_core_to_lib
|
|
49
49
|
copy_spec_files
|
|
50
|
-
puts ArchitectureJS::Notification.added "#{@config[:build_dir]}/#{@config[:name]}.js created"
|
|
50
|
+
puts ArchitectureJS::Notification.added "#{@config[:build_dir]}/#{@config[:name].downcase}.js created"
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
def get_file_name(module_path)
|
|
@@ -58,7 +58,7 @@ module ModJS
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
def create_application_file
|
|
61
|
-
app_file = "#{@root}/#{@config[:build_dir]}/#{@config[:name]}.js"
|
|
61
|
+
app_file = "#{@root}/#{@config[:build_dir]}/#{@config[:name].downcase}.js"
|
|
62
62
|
FileUtils.cp "#{ModJS::lib_dir}/mod.js", app_file
|
|
63
63
|
File.open(app_file, 'a') { |f| f.write("\nvar #{@config[:name]} = new Mod.Application('#{@config[:name]}');") }
|
|
64
64
|
end
|
|
@@ -96,7 +96,7 @@ module ModJS
|
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
def update_application_file
|
|
99
|
-
app_file = "#{@root}/#{@config[:build_dir]}/#{@config[:name]}.js"
|
|
99
|
+
app_file = "#{@root}/#{@config[:build_dir]}/#{@config[:name].downcase}.js"
|
|
100
100
|
|
|
101
101
|
File.open(app_file, "w+") do |file|
|
|
102
102
|
write_dependencies(file)
|
data/modjs-architecture.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "modjs-architecture"
|
|
8
|
-
s.version = "0.6.
|
|
8
|
+
s.version = "0.6.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Dayton Nolan"]
|
|
12
|
-
s.date = "2012-05-
|
|
12
|
+
s.date = "2012-05-29"
|
|
13
13
|
s.description = "Mod.js is a modular javascript library that provides a base application strucure to build large javascript applications. Mod.js is designed to work with architecture.js."
|
|
14
14
|
s.email = "daytonn@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -83,7 +83,7 @@ Gem::Specification.new do |s|
|
|
|
83
83
|
s.homepage = "http://github.com/daytonn/modjs-architecture"
|
|
84
84
|
s.licenses = ["MIT"]
|
|
85
85
|
s.require_paths = ["lib"]
|
|
86
|
-
s.rubygems_version = "1.8.
|
|
86
|
+
s.rubygems_version = "1.8.24"
|
|
87
87
|
s.summary = "Mod.js is an a la carte javascript framework"
|
|
88
88
|
|
|
89
89
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modjs-architecture
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-05-
|
|
12
|
+
date: 2012-05-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: architecture-js
|
|
@@ -210,7 +210,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
210
210
|
version: '0'
|
|
211
211
|
segments:
|
|
212
212
|
- 0
|
|
213
|
-
hash:
|
|
213
|
+
hash: 3789447508177911032
|
|
214
214
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
215
|
none: false
|
|
216
216
|
requirements:
|
|
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
219
219
|
version: '0'
|
|
220
220
|
requirements: []
|
|
221
221
|
rubyforge_project:
|
|
222
|
-
rubygems_version: 1.8.
|
|
222
|
+
rubygems_version: 1.8.24
|
|
223
223
|
signing_key:
|
|
224
224
|
specification_version: 3
|
|
225
225
|
summary: Mod.js is an a la carte javascript framework
|