jsus 0.2.7 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +6 -0
- data/CHANGELOG +4 -1
- data/Gemfile +4 -1
- data/VERSION +1 -1
- data/bin/jsus +30 -9
- data/features/command-line/compression.feature +24 -0
- data/features/command-line/mooforge_compatibility_layer.feature +75 -0
- data/features/data/Compression/Source/Library/Color.js +17 -0
- data/features/data/Compression/Source/Widget/Input/Input.Color.js +21 -0
- data/features/data/Compression/package.yml +9 -0
- data/features/data/MooforgePlugin/Core/Source/Core.js +16 -0
- data/features/data/MooforgePlugin/Core/package.yml +8 -0
- data/features/data/MooforgePlugin/Plugin/Source/plugin-support.js +20 -0
- data/features/data/MooforgePlugin/Plugin/Source/plugin.js +21 -0
- data/features/data/MooforgePlugin/Plugin/package.yml +9 -0
- data/features/data/compression.min.js +1 -0
- data/jsus.gemspec +45 -22
- data/lib/jsus/middleware.rb +178 -0
- data/lib/jsus/package.rb +10 -10
- data/lib/jsus/source_file.rb +58 -30
- data/lib/jsus/tag.rb +18 -10
- data/lib/jsus/util/file_cache.rb +57 -0
- data/lib/jsus/util/inflection.rb +39 -0
- data/lib/jsus/util.rb +2 -0
- data/lib/jsus.rb +2 -0
- data/spec/data/ComplexDependencies/Mootools/Source/Core.js +16 -0
- data/spec/data/ComplexDependencies/Mootools/package.yml +8 -0
- data/spec/data/ComplexDependencies/Output/package.js +70 -0
- data/spec/data/ComplexDependencies/Output/scripts.json +14 -0
- data/spec/data/ComplexDependencies/Output/tree.json +33 -0
- data/spec/data/ComplexDependencies/Source/Library/Color.js +19 -0
- data/spec/data/ComplexDependencies/Source/Widget/Input/Input.Color.js +20 -0
- data/spec/data/ComplexDependencies/Source/Widget/Input.js +16 -0
- data/spec/data/ComplexDependencies/package.yml +10 -0
- data/spec/data/mooforge_quirky_source.js +20 -0
- data/spec/data/unicode_source.js +23 -0
- data/spec/data/unicode_source_with_bom.js +23 -0
- data/spec/jsus/middleware_spec.rb +216 -0
- data/spec/jsus/package_spec.rb +12 -6
- data/spec/jsus/source_file_spec.rb +42 -14
- data/spec/jsus/tag_spec.rb +8 -2
- data/spec/jsus/util/file_cache_spec.rb +67 -0
- data/spec/jsus/util/inflection_spec.rb +42 -0
- metadata +124 -62
- data/Gemfile.lock +0 -79
@@ -0,0 +1,67 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
require 'fileutils'
|
4
|
+
|
5
|
+
describe Jsus::Util::FileCache do
|
6
|
+
subject { described_class.new(cache_dir) }
|
7
|
+
let(:key) { "random-key-#{rand(1000000)}" }
|
8
|
+
let(:value) { "Hello, world!" }
|
9
|
+
let(:cache_dir) { File.expand_path("spec/tmp") }
|
10
|
+
after(:each) { FileUtils.rm_rf(cache_dir) }
|
11
|
+
describe "#write" do
|
12
|
+
it "should create a file with given contents and return the filename" do
|
13
|
+
fn = subject.write(key, value)
|
14
|
+
File.exists?(fn).should be_true
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should not write to relative paths" do
|
18
|
+
FileUtils.rm_f("/tmp/test")
|
19
|
+
key = "../../../../../../../../../../../../../../../../tmp/test"
|
20
|
+
fn = subject.write(key, value)
|
21
|
+
File.exists?("/tmp/test").should be_false
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "#read" do
|
26
|
+
it "should return filename of file for given cache key" do
|
27
|
+
fn = subject.write(key, value)
|
28
|
+
subject.read(key).should == fn
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should return nil if cache is empty" do
|
32
|
+
subject.read(key).should == nil
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should not read from relative paths" do
|
36
|
+
key = "../../../../../../../../../../../../../../../../tmp/test"
|
37
|
+
File.open("/tmp/test", "w+") {|f| f.puts "Hello, world!" }
|
38
|
+
subject.read(key).should == nil
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe "#fetch" do
|
43
|
+
it "should return filename with given cached data if it already exists" do
|
44
|
+
fn = subject.write(key, value)
|
45
|
+
subject.fetch(key) { "Hello, world!" }.should == fn
|
46
|
+
File.read(fn).should == value
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should write data to cache if it isn't there yet" do
|
50
|
+
fn = subject.fetch(key) { value }
|
51
|
+
File.read(fn).should == value
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe "#delete" do
|
56
|
+
it "should delete file with cached data for given key" do
|
57
|
+
fn = subject.write(key, value)
|
58
|
+
File.exists?(fn).should be_true
|
59
|
+
subject.delete(key)
|
60
|
+
File.exists?(fn).should be_false
|
61
|
+
end
|
62
|
+
|
63
|
+
it "should not do anything if data for given key isn't there yet" do
|
64
|
+
lambda { subject.delete(key) }.should_not raise_error
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Jsus::Util::Inflection do
|
4
|
+
subject { described_class }
|
5
|
+
describe ".snake_case" do
|
6
|
+
it "should convert HelloWorld into hello_world" do
|
7
|
+
subject.snake_case("HelloWorld").should == "hello_world"
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should convert hello_world into hello_world" do
|
11
|
+
subject.snake_case("hello_world").should == "hello_world"
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should convert 'hello world' into hello_world" do
|
15
|
+
subject.snake_case("hello world").should == "hello_world"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
describe "#random_case_to_mixed_case" do
|
20
|
+
it "should convert hello_world to HelloWorld" do
|
21
|
+
subject.random_case_to_mixed_case("hello_world").should == "HelloWorld"
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should convert Oh.My.God to OhMyGod" do
|
25
|
+
subject.random_case_to_mixed_case("Oh.My.God").should == "OhMyGod"
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should convert iAmCamelCase to IAmCamelCase" do
|
29
|
+
subject.random_case_to_mixed_case("iAmCamelCase").should == "IAmCamelCase"
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should convert some._Weird_..punctuation to SomeWeirdPunctuation" do
|
33
|
+
subject.random_case_to_mixed_case("some._Weird_..punctuation").should == "SomeWeirdPunctuation"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "#random_case_to_mixed_case_preserve_dots" do
|
38
|
+
it "should preserve dots" do
|
39
|
+
subject.random_case_to_mixed_case_preserve_dots("color.fx").should == "Color.Fx"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 0.3.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mark Abramov
|
@@ -15,14 +15,13 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-05-17 00:00:00 +04:00
|
19
19
|
default_executable: jsus
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
type: :runtime
|
23
22
|
prerelease: false
|
24
|
-
|
25
|
-
|
23
|
+
type: :runtime
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
25
|
none: false
|
27
26
|
requirements:
|
28
27
|
- - ">="
|
@@ -31,12 +30,12 @@ dependencies:
|
|
31
30
|
segments:
|
32
31
|
- 0
|
33
32
|
version: "0"
|
34
|
-
|
33
|
+
name: activesupport
|
34
|
+
version_requirements: *id001
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
|
-
type: :runtime
|
37
36
|
prerelease: false
|
38
|
-
|
39
|
-
|
37
|
+
type: :runtime
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
39
|
none: false
|
41
40
|
requirements:
|
42
41
|
- - ">="
|
@@ -45,12 +44,12 @@ dependencies:
|
|
45
44
|
segments:
|
46
45
|
- 0
|
47
46
|
version: "0"
|
48
|
-
|
47
|
+
name: json_pure
|
48
|
+
version_requirements: *id002
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
|
-
type: :runtime
|
51
50
|
prerelease: false
|
52
|
-
|
53
|
-
|
51
|
+
type: :runtime
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
53
|
none: false
|
55
54
|
requirements:
|
56
55
|
- - ">="
|
@@ -59,12 +58,12 @@ dependencies:
|
|
59
58
|
segments:
|
60
59
|
- 0
|
61
60
|
version: "0"
|
62
|
-
|
61
|
+
name: rgl
|
62
|
+
version_requirements: *id003
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
|
-
type: :development
|
65
64
|
prerelease: false
|
66
|
-
|
67
|
-
|
65
|
+
type: :development
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
67
|
none: false
|
69
68
|
requirements:
|
70
69
|
- - ">="
|
@@ -73,12 +72,12 @@ dependencies:
|
|
73
72
|
segments:
|
74
73
|
- 0
|
75
74
|
version: "0"
|
76
|
-
|
75
|
+
name: bundler
|
76
|
+
version_requirements: *id004
|
77
77
|
- !ruby/object:Gem::Dependency
|
78
|
-
type: :development
|
79
78
|
prerelease: false
|
80
|
-
|
81
|
-
|
79
|
+
type: :development
|
80
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
82
81
|
none: false
|
83
82
|
requirements:
|
84
83
|
- - ">="
|
@@ -87,12 +86,12 @@ dependencies:
|
|
87
86
|
segments:
|
88
87
|
- 0
|
89
88
|
version: "0"
|
90
|
-
|
89
|
+
name: rspec
|
90
|
+
version_requirements: *id005
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
|
-
type: :development
|
93
92
|
prerelease: false
|
94
|
-
|
95
|
-
|
93
|
+
type: :development
|
94
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
96
95
|
none: false
|
97
96
|
requirements:
|
98
97
|
- - ">="
|
@@ -101,12 +100,12 @@ dependencies:
|
|
101
100
|
segments:
|
102
101
|
- 0
|
103
102
|
version: "0"
|
104
|
-
|
103
|
+
name: cucumber
|
104
|
+
version_requirements: *id006
|
105
105
|
- !ruby/object:Gem::Dependency
|
106
|
-
type: :development
|
107
106
|
prerelease: false
|
108
|
-
|
109
|
-
|
107
|
+
type: :development
|
108
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
110
109
|
none: false
|
111
110
|
requirements:
|
112
111
|
- - ">="
|
@@ -115,12 +114,28 @@ dependencies:
|
|
115
114
|
segments:
|
116
115
|
- 0
|
117
116
|
version: "0"
|
118
|
-
|
117
|
+
name: jeweler
|
118
|
+
version_requirements: *id007
|
119
119
|
- !ruby/object:Gem::Dependency
|
120
|
-
type: :development
|
121
120
|
prerelease: false
|
121
|
+
type: :development
|
122
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
123
|
+
none: false
|
124
|
+
requirements:
|
125
|
+
- - ~>
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
hash: 13
|
128
|
+
segments:
|
129
|
+
- 0
|
130
|
+
- 1
|
131
|
+
- 11
|
132
|
+
version: 0.1.11
|
122
133
|
name: murdoc
|
123
|
-
version_requirements:
|
134
|
+
version_requirements: *id008
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
prerelease: false
|
137
|
+
type: :development
|
138
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
124
139
|
none: false
|
125
140
|
requirements:
|
126
141
|
- - ">="
|
@@ -129,12 +144,12 @@ dependencies:
|
|
129
144
|
segments:
|
130
145
|
- 0
|
131
146
|
version: "0"
|
132
|
-
|
147
|
+
name: ruby-debug19
|
148
|
+
version_requirements: *id009
|
133
149
|
- !ruby/object:Gem::Dependency
|
134
|
-
type: :development
|
135
150
|
prerelease: false
|
136
|
-
|
137
|
-
|
151
|
+
type: :development
|
152
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
138
153
|
none: false
|
139
154
|
requirements:
|
140
155
|
- - ">="
|
@@ -143,12 +158,26 @@ dependencies:
|
|
143
158
|
segments:
|
144
159
|
- 0
|
145
160
|
version: "0"
|
146
|
-
|
161
|
+
name: ruby-debug
|
162
|
+
version_requirements: *id010
|
147
163
|
- !ruby/object:Gem::Dependency
|
164
|
+
prerelease: false
|
148
165
|
type: :development
|
166
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
167
|
+
none: false
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
hash: 3
|
172
|
+
segments:
|
173
|
+
- 0
|
174
|
+
version: "0"
|
175
|
+
name: fssm
|
176
|
+
version_requirements: *id011
|
177
|
+
- !ruby/object:Gem::Dependency
|
149
178
|
prerelease: false
|
150
|
-
|
151
|
-
|
179
|
+
type: :development
|
180
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
152
181
|
none: false
|
153
182
|
requirements:
|
154
183
|
- - ">="
|
@@ -157,12 +186,26 @@ dependencies:
|
|
157
186
|
segments:
|
158
187
|
- 0
|
159
188
|
version: "0"
|
160
|
-
|
189
|
+
name: yui-compressor
|
190
|
+
version_requirements: *id012
|
161
191
|
- !ruby/object:Gem::Dependency
|
192
|
+
prerelease: false
|
162
193
|
type: :development
|
194
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
195
|
+
none: false
|
196
|
+
requirements:
|
197
|
+
- - ">="
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
hash: 3
|
200
|
+
segments:
|
201
|
+
- 0
|
202
|
+
version: "0"
|
203
|
+
name: sinatra
|
204
|
+
version_requirements: *id013
|
205
|
+
- !ruby/object:Gem::Dependency
|
163
206
|
prerelease: false
|
164
|
-
|
165
|
-
|
207
|
+
type: :development
|
208
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
166
209
|
none: false
|
167
210
|
requirements:
|
168
211
|
- - ">="
|
@@ -171,7 +214,8 @@ dependencies:
|
|
171
214
|
segments:
|
172
215
|
- 0
|
173
216
|
version: "0"
|
174
|
-
|
217
|
+
name: rack-test
|
218
|
+
version_requirements: *id014
|
175
219
|
description: Javascript packager and dependency resolver
|
176
220
|
email: markizko@gmail.com
|
177
221
|
executables:
|
@@ -184,9 +228,9 @@ extra_rdoc_files:
|
|
184
228
|
files:
|
185
229
|
- .document
|
186
230
|
- .rspec
|
231
|
+
- .travis.yml
|
187
232
|
- CHANGELOG
|
188
233
|
- Gemfile
|
189
|
-
- Gemfile.lock
|
190
234
|
- Manifest
|
191
235
|
- README
|
192
236
|
- Rakefile
|
@@ -197,9 +241,11 @@ files:
|
|
197
241
|
- bin/jsus
|
198
242
|
- cucumber.yml
|
199
243
|
- features/command-line/basic_dependency_resolution.feature
|
244
|
+
- features/command-line/compression.feature
|
200
245
|
- features/command-line/extensions.feature
|
201
246
|
- features/command-line/external_dependency_resolution.feature
|
202
247
|
- features/command-line/json_package.feature
|
248
|
+
- features/command-line/mooforge_compatibility_layer.feature
|
203
249
|
- features/command-line/postproc.feature
|
204
250
|
- features/command-line/replacements.feature
|
205
251
|
- features/command-line/structure_json.feature
|
@@ -209,6 +255,9 @@ files:
|
|
209
255
|
- features/data/BasicWrongOrder/Source/Library/Color.js
|
210
256
|
- features/data/BasicWrongOrder/Source/Widget/Input/Input.Color.js
|
211
257
|
- features/data/BasicWrongOrder/package.yml
|
258
|
+
- features/data/Compression/Source/Library/Color.js
|
259
|
+
- features/data/Compression/Source/Widget/Input/Input.Color.js
|
260
|
+
- features/data/Compression/package.yml
|
212
261
|
- features/data/Extensions/Mootools/Source/Core.js
|
213
262
|
- features/data/Extensions/Mootools/package.yml
|
214
263
|
- features/data/Extensions/Source/Extensions/MootoolsCore.js
|
@@ -229,6 +278,11 @@ files:
|
|
229
278
|
- features/data/JsonPackage/Source/Library/Color.js
|
230
279
|
- features/data/JsonPackage/Source/Widget/Input/Input.Color.js
|
231
280
|
- features/data/JsonPackage/package.json
|
281
|
+
- features/data/MooforgePlugin/Core/Source/Core.js
|
282
|
+
- features/data/MooforgePlugin/Core/package.yml
|
283
|
+
- features/data/MooforgePlugin/Plugin/Source/plugin-support.js
|
284
|
+
- features/data/MooforgePlugin/Plugin/Source/plugin.js
|
285
|
+
- features/data/MooforgePlugin/Plugin/package.yml
|
232
286
|
- features/data/Postprocessing/MootoolsCompat12/Source/Core.js
|
233
287
|
- features/data/Postprocessing/MootoolsCompat12/package.yml
|
234
288
|
- features/data/Postprocessing/MootoolsLtIE8/Source/Core.js
|
@@ -239,6 +293,7 @@ files:
|
|
239
293
|
- features/data/Replacements/MootoolsFork/package.yml
|
240
294
|
- features/data/Replacements/Source/Library/Color.js
|
241
295
|
- features/data/Replacements/package.yml
|
296
|
+
- features/data/compression.min.js
|
242
297
|
- features/data/tmp2/package.js
|
243
298
|
- features/data/tmp2/scripts.json
|
244
299
|
- features/data/tmp2/tree.json
|
@@ -247,6 +302,7 @@ files:
|
|
247
302
|
- jsus.gemspec
|
248
303
|
- lib/jsus.rb
|
249
304
|
- lib/jsus/container.rb
|
305
|
+
- lib/jsus/middleware.rb
|
250
306
|
- lib/jsus/package.rb
|
251
307
|
- lib/jsus/packager.rb
|
252
308
|
- lib/jsus/pool.rb
|
@@ -254,6 +310,8 @@ files:
|
|
254
310
|
- lib/jsus/tag.rb
|
255
311
|
- lib/jsus/util.rb
|
256
312
|
- lib/jsus/util/documenter.rb
|
313
|
+
- lib/jsus/util/file_cache.rb
|
314
|
+
- lib/jsus/util/inflection.rb
|
257
315
|
- lib/jsus/util/tree.rb
|
258
316
|
- lib/jsus/util/validator.rb
|
259
317
|
- lib/jsus/util/validator/base.rb
|
@@ -275,6 +333,15 @@ files:
|
|
275
333
|
- spec/data/ChainDependencies/app/javascripts/Mash/package.yml
|
276
334
|
- spec/data/ClassReplacement/Source/Class.js
|
277
335
|
- spec/data/ClassReplacement/package.yml
|
336
|
+
- spec/data/ComplexDependencies/Mootools/Source/Core.js
|
337
|
+
- spec/data/ComplexDependencies/Mootools/package.yml
|
338
|
+
- spec/data/ComplexDependencies/Output/package.js
|
339
|
+
- spec/data/ComplexDependencies/Output/scripts.json
|
340
|
+
- spec/data/ComplexDependencies/Output/tree.json
|
341
|
+
- spec/data/ComplexDependencies/Source/Library/Color.js
|
342
|
+
- spec/data/ComplexDependencies/Source/Widget/Input.js
|
343
|
+
- spec/data/ComplexDependencies/Source/Widget/Input/Input.Color.js
|
344
|
+
- spec/data/ComplexDependencies/package.yml
|
278
345
|
- spec/data/DependenciesWildcards/app/javascripts/Class/Source/Class.js
|
279
346
|
- spec/data/DependenciesWildcards/app/javascripts/Class/package.yml
|
280
347
|
- spec/data/DependenciesWildcards/app/javascripts/Hash/Source/Hash.js
|
@@ -324,14 +391,20 @@ files:
|
|
324
391
|
- spec/data/OutsideDependencies/app/javascripts/Orwik/package.yml
|
325
392
|
- spec/data/bad_test_source_one.js
|
326
393
|
- spec/data/bad_test_source_two.js
|
394
|
+
- spec/data/mooforge_quirky_source.js
|
327
395
|
- spec/data/test_source_one.js
|
396
|
+
- spec/data/unicode_source.js
|
397
|
+
- spec/data/unicode_source_with_bom.js
|
328
398
|
- spec/jsus/container_spec.rb
|
399
|
+
- spec/jsus/middleware_spec.rb
|
329
400
|
- spec/jsus/package_spec.rb
|
330
401
|
- spec/jsus/packager_spec.rb
|
331
402
|
- spec/jsus/pool_spec.rb
|
332
403
|
- spec/jsus/source_file_spec.rb
|
333
404
|
- spec/jsus/tag_spec.rb
|
334
405
|
- spec/jsus/util/documenter_spec.rb
|
406
|
+
- spec/jsus/util/file_cache_spec.rb
|
407
|
+
- spec/jsus/util/inflection_spec.rb
|
335
408
|
- spec/jsus/util/tree_spec.rb
|
336
409
|
- spec/jsus/util/validator/base_spec.rb
|
337
410
|
- spec/jsus/util/validator/mooforge_spec.rb
|
@@ -367,20 +440,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
367
440
|
requirements: []
|
368
441
|
|
369
442
|
rubyforge_project:
|
370
|
-
rubygems_version: 1.
|
443
|
+
rubygems_version: 1.6.2
|
371
444
|
signing_key:
|
372
445
|
specification_version: 3
|
373
446
|
summary: Javascript packager and dependency resolver
|
374
|
-
test_files:
|
375
|
-
|
376
|
-
- spec/jsus/package_spec.rb
|
377
|
-
- spec/jsus/packager_spec.rb
|
378
|
-
- spec/jsus/pool_spec.rb
|
379
|
-
- spec/jsus/source_file_spec.rb
|
380
|
-
- spec/jsus/tag_spec.rb
|
381
|
-
- spec/jsus/util/documenter_spec.rb
|
382
|
-
- spec/jsus/util/tree_spec.rb
|
383
|
-
- spec/jsus/util/validator/base_spec.rb
|
384
|
-
- spec/jsus/util/validator/mooforge_spec.rb
|
385
|
-
- spec/shared/class_stubs.rb
|
386
|
-
- spec/spec_helper.rb
|
447
|
+
test_files: []
|
448
|
+
|
data/Gemfile.lock
DELETED
@@ -1,79 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
activesupport (3.0.3)
|
5
|
-
archive-tar-minitar (0.5.2)
|
6
|
-
builder (3.0.0)
|
7
|
-
columnize (0.3.2)
|
8
|
-
cucumber (0.10.0)
|
9
|
-
builder (>= 2.1.2)
|
10
|
-
diff-lcs (~> 1.1.2)
|
11
|
-
gherkin (~> 2.3.2)
|
12
|
-
json (~> 1.4.6)
|
13
|
-
term-ansicolor (~> 1.0.5)
|
14
|
-
diff-lcs (1.1.2)
|
15
|
-
fssm (0.2.5)
|
16
|
-
gherkin (2.3.3)
|
17
|
-
json (~> 1.4.6)
|
18
|
-
git (1.2.5)
|
19
|
-
haml (3.0.25)
|
20
|
-
jeweler (1.5.2)
|
21
|
-
bundler (~> 1.0.0)
|
22
|
-
git (>= 1.2.5)
|
23
|
-
rake
|
24
|
-
json (1.4.6)
|
25
|
-
json_pure (1.4.6)
|
26
|
-
linecache (0.43)
|
27
|
-
linecache19 (0.5.11)
|
28
|
-
ruby_core_source (>= 0.1.4)
|
29
|
-
murdoc (0.1.5)
|
30
|
-
haml (~> 3.0.0)
|
31
|
-
haml (~> 3.0.0)
|
32
|
-
rdiscount (~> 1.6.5)
|
33
|
-
rdiscount (~> 1.6.5)
|
34
|
-
rake (0.8.7)
|
35
|
-
rdiscount (1.6.5)
|
36
|
-
rgl (0.4.0)
|
37
|
-
rake
|
38
|
-
stream (>= 0.5)
|
39
|
-
rspec (2.4.0)
|
40
|
-
rspec-core (~> 2.4.0)
|
41
|
-
rspec-expectations (~> 2.4.0)
|
42
|
-
rspec-mocks (~> 2.4.0)
|
43
|
-
rspec-core (2.4.0)
|
44
|
-
rspec-expectations (2.4.0)
|
45
|
-
diff-lcs (~> 1.1.2)
|
46
|
-
rspec-mocks (2.4.0)
|
47
|
-
ruby-debug (0.10.4)
|
48
|
-
columnize (>= 0.1)
|
49
|
-
ruby-debug-base (~> 0.10.4.0)
|
50
|
-
ruby-debug-base (0.10.4)
|
51
|
-
linecache (>= 0.3)
|
52
|
-
ruby-debug-base19 (0.11.24)
|
53
|
-
columnize (>= 0.3.1)
|
54
|
-
linecache19 (>= 0.5.11)
|
55
|
-
ruby_core_source (>= 0.1.4)
|
56
|
-
ruby-debug19 (0.11.6)
|
57
|
-
columnize (>= 0.3.1)
|
58
|
-
linecache19 (>= 0.5.11)
|
59
|
-
ruby-debug-base19 (>= 0.11.19)
|
60
|
-
ruby_core_source (0.1.4)
|
61
|
-
archive-tar-minitar (>= 0.5.2)
|
62
|
-
stream (0.5)
|
63
|
-
term-ansicolor (1.0.5)
|
64
|
-
|
65
|
-
PLATFORMS
|
66
|
-
ruby
|
67
|
-
|
68
|
-
DEPENDENCIES
|
69
|
-
activesupport
|
70
|
-
bundler
|
71
|
-
cucumber
|
72
|
-
fssm
|
73
|
-
jeweler
|
74
|
-
json_pure
|
75
|
-
murdoc
|
76
|
-
rgl
|
77
|
-
rspec
|
78
|
-
ruby-debug
|
79
|
-
ruby-debug19
|