trackman 0.2.90 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +15 -18
- data/lib/trackman.rb +1 -1
- data/lib/trackman/assets/components/composite_asset.rb +10 -7
- data/lib/trackman/assets/components/rails32_path_resolver.rb +20 -19
- data/lib/trackman/assets/remote_asset.rb +0 -6
- data/lib/trackman/version.rb +1 -1
- data/spec/composite_asset_spec.rb +34 -4
- data/spec/helpers/app_creator.rb +1 -1
- data/spec/rails32_path_resolver_spec.rb +24 -0
- data/spec/remote_asset_spec.rb +1 -2
- metadata +290 -4
data/README.md
CHANGED
@@ -1,20 +1,21 @@
|
|
1
1
|
# Trackman
|
2
|
+
Trackman is a Heroku add-on that hosts your maintenance pages and their assets outside your app.
|
3
|
+
Version them as a part of your project.
|
2
4
|
|
3
|
-
|
4
|
-
|
5
|
-
* It works with rails-like conventions.
|
6
|
-
* It is rack-based.
|
7
|
-
* It will push your pages and all their internal assets upon application initialization.
|
8
|
-
|
9
|
-
## Information
|
10
|
-
|
11
|
-
### Platform support
|
12
|
-
|
13
|
-
Trackman works out of the box for Ruby(1.8.7 and 1.9.3) on
|
14
|
-
|
5
|
+
works out of the box for Ruby(1.8.7 and 1.9.3) on
|
15
6
|
* Rails 2
|
16
7
|
* Rails 3
|
17
8
|
|
9
|
+
##Quick peek
|
10
|
+
###The first time
|
11
|
+
* Create maintenance pages as if they were served by your app.
|
12
|
+
* Run a rake task to setup the heroku configs.
|
13
|
+
* Deploy the changes and boot your app.
|
14
|
+
|
15
|
+
### Need to change your layout or assets?
|
16
|
+
Simply modify those pages, link different assets, go crazy...
|
17
|
+
Trackman will sync upon application boot on your next deployment.
|
18
|
+
|
18
19
|
|
19
20
|
## Getting started
|
20
21
|
### Step 1 - Install the heroku add-on
|
@@ -39,6 +40,8 @@ rake trackman:setup
|
|
39
40
|
This sets your initial heroku configurations and ensures that when your app is down or in maintenance your pages will be requested by heroku.
|
40
41
|
If you have maintenance or error pages setup for heroku, we will back them up in a configuration before we override them.
|
41
42
|
|
43
|
+
On your next push Trackman will look for changes to your maintenance pages and sync them!
|
44
|
+
|
42
45
|
### Optional - If for any reason you wish to troubleshoot the sync operation:
|
43
46
|
|
44
47
|
```console
|
@@ -68,12 +71,6 @@ Broken app
|
|
68
71
|
public/503-error.html
|
69
72
|
```
|
70
73
|
|
71
|
-
After the add-on installation
|
72
|
-
|
73
|
-
* On the first publish or manual sync, your html file(s) and every internal assets referenced by your pages(s) will be pushed to the server so that we can store them properly on S3.
|
74
|
-
* On the next publications, only modified assets will be published.
|
75
|
-
* Any renamed or missing asset will be handled properly.
|
76
|
-
|
77
74
|
### Bug reports
|
78
75
|
|
79
76
|
Any bug report can be submitted here.
|
data/lib/trackman.rb
CHANGED
@@ -12,7 +12,7 @@ autoload :Debugger, 'trackman/debugger'
|
|
12
12
|
|
13
13
|
if defined?(Rails) && Rails.env == "production"
|
14
14
|
if ::Rails::VERSION::STRING =~ /^2\.[1-9]/
|
15
|
-
require 'config/environment'
|
15
|
+
require './config/environment'
|
16
16
|
Rails.configuration.middleware.use Trackman::RackMiddleware
|
17
17
|
elsif ::Rails::VERSION::STRING =~ /^[3-9]\.[1-9]/
|
18
18
|
require "trackman/railtie"
|
@@ -10,15 +10,18 @@ module Trackman
|
|
10
10
|
mod.send(:extend, PathResolver)
|
11
11
|
end
|
12
12
|
|
13
|
+
#internals = children_paths.select{|p| p.internal_path? }.map{|p| translate(p, path) }.select{|p| !p.nil? }
|
13
14
|
def assets
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
internals = children_paths.select{|p| p.internal_path? }.map{|p| {old: p, new_path: translate(p, path)} }
|
16
|
+
internals.select{|p| !p[:new_path].nil? }.map{|p| asset_from(p[:old], p[:new_path])}.inject([]) do |sum, a|
|
17
|
+
sum << a
|
18
|
+
sum.concat(a.assets.select{|child| !sum.include?(child) })
|
19
|
+
sum
|
19
20
|
end
|
20
|
-
|
21
|
-
|
21
|
+
end
|
22
|
+
|
23
|
+
def asset_from(virtual, physical)
|
24
|
+
Asset.create(:virtual_path => virtual.dup, :path => physical)
|
22
25
|
end
|
23
26
|
|
24
27
|
def inner_css_paths
|
@@ -8,19 +8,17 @@ module Trackman
|
|
8
8
|
|
9
9
|
def translate url, parent_url
|
10
10
|
root = working_dir.realpath
|
11
|
-
|
12
11
|
path = url
|
13
12
|
|
14
13
|
path.slice! /^(\/assets|assets\/)/
|
15
14
|
path = Pathname.new path
|
16
15
|
|
17
|
-
if path.relative?
|
18
|
-
|
19
|
-
path =
|
20
|
-
|
16
|
+
path = prepare_for_sprocket(path, parent_url, root) if path.relative?
|
17
|
+
begin
|
18
|
+
path = sprockets.resolve path
|
19
|
+
rescue Exception
|
20
|
+
return nil
|
21
21
|
end
|
22
|
-
|
23
|
-
path = sprockets.resolve path
|
24
22
|
path.relative_path_from(root).to_s
|
25
23
|
end
|
26
24
|
|
@@ -28,19 +26,22 @@ module Trackman
|
|
28
26
|
@@sprockets ||= init_env
|
29
27
|
end
|
30
28
|
|
29
|
+
def prepare_for_sprocket path, parent_url, root
|
30
|
+
folder = (root + Pathname.new(parent_url)).parent.realpath
|
31
|
+
path = (folder + path).to_s
|
32
|
+
path.slice! sprockets.paths.select{|p| path.include? p }.first
|
33
|
+
path
|
34
|
+
end
|
35
|
+
|
31
36
|
def init_env
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
paths << "#{working_dir}/public"
|
41
|
-
paths.each{|p| env.append_path p }
|
42
|
-
#end
|
43
|
-
|
37
|
+
env = ::Sprockets::Environment.new
|
38
|
+
|
39
|
+
paths = ['app', 'lib', 'vendor'].inject([]) do |array, f|
|
40
|
+
array + ["images", "stylesheets", "javascripts"].map{|p| "#{working_dir}/#{f}/assets/#{p}" }
|
41
|
+
end
|
42
|
+
|
43
|
+
paths << "#{working_dir}/public"
|
44
|
+
paths.each{|p| env.append_path p }
|
44
45
|
env
|
45
46
|
end
|
46
47
|
def subfolder(file)
|
@@ -45,18 +45,12 @@ module Trackman
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def create!
|
48
|
-
puts "***CREATE ASSET**"
|
49
|
-
puts build_params
|
50
|
-
puts "*****"
|
51
48
|
response = RestClient.post @@site, build_params, :content_type => :json, :accept => :json
|
52
49
|
path = response.headers[:location]
|
53
50
|
@id = path[/\d+$/].to_i
|
54
51
|
end
|
55
52
|
|
56
53
|
def update!
|
57
|
-
puts "***UPDATE ASSET**"
|
58
|
-
puts build_params
|
59
|
-
puts "*****"
|
60
54
|
RestClient.put "#{@@site}/#{id}", build_params, :content_type => :json, :accept => :json
|
61
55
|
end
|
62
56
|
def delete
|
data/lib/trackman/version.rb
CHANGED
@@ -1,12 +1,42 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
class
|
4
|
-
|
3
|
+
class TestComposite
|
4
|
+
include Trackman::Assets::Components::CompositeAsset
|
5
|
+
|
6
|
+
def path
|
7
|
+
'parent'
|
8
|
+
end
|
9
|
+
|
10
|
+
def asset_from(virtual, physical)
|
11
|
+
TestAsset.new(:virtual_path => virtual.dup, :path => translate(physical, self.path))
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
class TestAsset < Trackman::Assets::Asset
|
16
|
+
def validate_path?
|
17
|
+
false
|
18
|
+
end
|
5
19
|
end
|
6
20
|
|
7
|
-
describe
|
8
|
-
|
21
|
+
describe Trackman::Assets::Components::CompositeAsset do
|
22
|
+
before :each do
|
23
|
+
@composite = TestComposite.new
|
24
|
+
end
|
25
|
+
it "has children" do
|
9
26
|
asset = CssAsset.new(:path => 'spec/test_data/css/with-asset.css')
|
10
27
|
asset.assets.should == [CssAsset.new(:path => 'spec/test_data/css/imported.css')]
|
11
28
|
end
|
29
|
+
|
30
|
+
it "removes the translated assets that are nil" do
|
31
|
+
def @composite.children_paths
|
32
|
+
['a', 'b', 'c']
|
33
|
+
end
|
34
|
+
def @composite.translate(url, parent_url)
|
35
|
+
return nil if url == 'b'
|
36
|
+
url
|
37
|
+
end
|
38
|
+
|
39
|
+
expected = ['a', 'c'].map{|p| TestAsset.new(:virtual_path => p, :path => p)}
|
40
|
+
@composite.assets.should == expected
|
41
|
+
end
|
12
42
|
end
|
data/spec/helpers/app_creator.rb
CHANGED
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class Rails32ResolverTest
|
4
|
+
include Trackman::Assets::Components::Rails32PathResolver
|
5
|
+
end
|
6
|
+
|
7
|
+
describe Trackman::Assets::Components::Rails32PathResolver do
|
8
|
+
Rails32PathResolver = Trackman::Assets::Components::Rails32PathResolver
|
9
|
+
before :all do
|
10
|
+
@test = Rails32ResolverTest.new
|
11
|
+
end
|
12
|
+
|
13
|
+
it "does not throw when sprockets throws" do
|
14
|
+
sprocket = double "SprocketEnvironment"
|
15
|
+
sprocket.stub(:resolve).and_raise(Exception)
|
16
|
+
|
17
|
+
@test.stub(:prepare_for_sprocket).and_return('some/path')
|
18
|
+
@test.stub(:sprockets).and_return(sprocket)
|
19
|
+
|
20
|
+
@test.translate 'some/path', 'path/to/my/parent'
|
21
|
+
|
22
|
+
lambda { @test.translate 'some/path', 'path/to/my/parent' }.should_not raise_error
|
23
|
+
end
|
24
|
+
end
|
data/spec/remote_asset_spec.rb
CHANGED
@@ -4,9 +4,8 @@ describe Trackman::Assets::RemoteAsset do
|
|
4
4
|
before :all do
|
5
5
|
user = ENV['HEROKU_USERNAME']
|
6
6
|
pass = ENV['HEROKU_PASSWORD']
|
7
|
-
server = ENV['
|
7
|
+
server = ENV['TRACKMAN_SERVER_URL']
|
8
8
|
|
9
|
-
puts "calling http://#{user}:#{pass}@#{server}/heroku/resources"
|
10
9
|
response = RestClient.post "http://#{user}:#{pass}@#{server}/heroku/resources", :plan => 'test', :heroku_id => 123
|
11
10
|
json = JSON.parse response
|
12
11
|
@trackman_url = json['config']['TRACKMAN_URL'].gsub('https', 'http')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trackman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-08-
|
13
|
+
date: 2012-08-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rest-client
|
@@ -434,6 +434,7 @@ files:
|
|
434
434
|
- spec/paths/rails32_pathman_spec.rb
|
435
435
|
- spec/rails2311/first_push_spec.rb
|
436
436
|
- spec/rails32/first_push_spec.rb
|
437
|
+
- spec/rails32_path_resolver_spec.rb
|
437
438
|
- spec/remote_asset_spec.rb
|
438
439
|
- spec/shippable_spec.rb
|
439
440
|
- spec/spec_helper.rb
|
@@ -489,8 +490,293 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
489
490
|
version: '0'
|
490
491
|
requirements: []
|
491
492
|
rubyforge_project:
|
492
|
-
rubygems_version: 1.8.
|
493
|
+
rubygems_version: 1.8.24
|
493
494
|
signing_key:
|
494
495
|
specification_version: 3
|
495
496
|
summary: Client version of the Trackman addon on Heroku
|
496
|
-
test_files:
|
497
|
+
test_files:
|
498
|
+
- spec/asset_all_spec.rb
|
499
|
+
- spec/asset_factory_spec.rb
|
500
|
+
- spec/asset_spec.rb
|
501
|
+
- spec/composite_asset_spec.rb
|
502
|
+
- spec/configuration_handler_spec.rb
|
503
|
+
- spec/css_asset_spec.rb
|
504
|
+
- spec/diffable_spec.rb
|
505
|
+
- spec/fixtures/rails2311/fully-loaded/README
|
506
|
+
- spec/fixtures/rails2311/fully-loaded/Rakefile
|
507
|
+
- spec/fixtures/rails2311/fully-loaded/app/controllers/application_controller.rb
|
508
|
+
- spec/fixtures/rails2311/fully-loaded/app/helpers/application_helper.rb
|
509
|
+
- spec/fixtures/rails2311/fully-loaded/config/boot.rb
|
510
|
+
- spec/fixtures/rails2311/fully-loaded/config/database.yml
|
511
|
+
- spec/fixtures/rails2311/fully-loaded/config/environment.rb
|
512
|
+
- spec/fixtures/rails2311/fully-loaded/config/environments/development.rb
|
513
|
+
- spec/fixtures/rails2311/fully-loaded/config/environments/production.rb
|
514
|
+
- spec/fixtures/rails2311/fully-loaded/config/environments/test.rb
|
515
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/backtrace_silencers.rb
|
516
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/cookie_verification_secret.rb
|
517
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/inflections.rb
|
518
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/mime_types.rb
|
519
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/new_rails_defaults.rb
|
520
|
+
- spec/fixtures/rails2311/fully-loaded/config/initializers/session_store.rb
|
521
|
+
- spec/fixtures/rails2311/fully-loaded/config/locales/en.yml
|
522
|
+
- spec/fixtures/rails2311/fully-loaded/config/routes.rb
|
523
|
+
- spec/fixtures/rails2311/fully-loaded/db/seeds.rb
|
524
|
+
- spec/fixtures/rails2311/fully-loaded/doc/README_FOR_APP
|
525
|
+
- spec/fixtures/rails2311/fully-loaded/log/development.log
|
526
|
+
- spec/fixtures/rails2311/fully-loaded/log/production.log
|
527
|
+
- spec/fixtures/rails2311/fully-loaded/log/server.log
|
528
|
+
- spec/fixtures/rails2311/fully-loaded/log/test.log
|
529
|
+
- spec/fixtures/rails2311/fully-loaded/public/404.html
|
530
|
+
- spec/fixtures/rails2311/fully-loaded/public/422.html
|
531
|
+
- spec/fixtures/rails2311/fully-loaded/public/500.html
|
532
|
+
- spec/fixtures/rails2311/fully-loaded/public/503-error.html
|
533
|
+
- spec/fixtures/rails2311/fully-loaded/public/503.html
|
534
|
+
- spec/fixtures/rails2311/fully-loaded/public/favicon.ico
|
535
|
+
- spec/fixtures/rails2311/fully-loaded/public/images/rails.png
|
536
|
+
- spec/fixtures/rails2311/fully-loaded/public/index.html
|
537
|
+
- spec/fixtures/rails2311/fully-loaded/public/javascripts/application.js
|
538
|
+
- spec/fixtures/rails2311/fully-loaded/public/javascripts/controls.js
|
539
|
+
- spec/fixtures/rails2311/fully-loaded/public/javascripts/dragdrop.js
|
540
|
+
- spec/fixtures/rails2311/fully-loaded/public/javascripts/effects.js
|
541
|
+
- spec/fixtures/rails2311/fully-loaded/public/javascripts/prototype.js
|
542
|
+
- spec/fixtures/rails2311/fully-loaded/public/robots.txt
|
543
|
+
- spec/fixtures/rails2311/fully-loaded/public/stylesheets/application.css
|
544
|
+
- spec/fixtures/rails2311/fully-loaded/public/stylesheets/some-other-css.css
|
545
|
+
- spec/fixtures/rails2311/fully-loaded/public/stylesheets/sub-css/sub-css.css
|
546
|
+
- spec/fixtures/rails2311/fully-loaded/script/about
|
547
|
+
- spec/fixtures/rails2311/fully-loaded/script/console
|
548
|
+
- spec/fixtures/rails2311/fully-loaded/script/dbconsole
|
549
|
+
- spec/fixtures/rails2311/fully-loaded/script/destroy
|
550
|
+
- spec/fixtures/rails2311/fully-loaded/script/generate
|
551
|
+
- spec/fixtures/rails2311/fully-loaded/script/performance/benchmarker
|
552
|
+
- spec/fixtures/rails2311/fully-loaded/script/performance/profiler
|
553
|
+
- spec/fixtures/rails2311/fully-loaded/script/plugin
|
554
|
+
- spec/fixtures/rails2311/fully-loaded/script/runner
|
555
|
+
- spec/fixtures/rails2311/fully-loaded/script/server
|
556
|
+
- spec/fixtures/rails2311/fully-loaded/test/performance/browsing_test.rb
|
557
|
+
- spec/fixtures/rails2311/fully-loaded/test/test_helper.rb
|
558
|
+
- spec/fixtures/rails2311/template/README
|
559
|
+
- spec/fixtures/rails2311/template/Rakefile
|
560
|
+
- spec/fixtures/rails2311/template/app/controllers/application_controller.rb
|
561
|
+
- spec/fixtures/rails2311/template/app/helpers/application_helper.rb
|
562
|
+
- spec/fixtures/rails2311/template/config/boot.rb
|
563
|
+
- spec/fixtures/rails2311/template/config/database.yml
|
564
|
+
- spec/fixtures/rails2311/template/config/environment.rb
|
565
|
+
- spec/fixtures/rails2311/template/config/environments/development.rb
|
566
|
+
- spec/fixtures/rails2311/template/config/environments/production.rb
|
567
|
+
- spec/fixtures/rails2311/template/config/environments/test.rb
|
568
|
+
- spec/fixtures/rails2311/template/config/initializers/backtrace_silencers.rb
|
569
|
+
- spec/fixtures/rails2311/template/config/initializers/cookie_verification_secret.rb
|
570
|
+
- spec/fixtures/rails2311/template/config/initializers/inflections.rb
|
571
|
+
- spec/fixtures/rails2311/template/config/initializers/mime_types.rb
|
572
|
+
- spec/fixtures/rails2311/template/config/initializers/new_rails_defaults.rb
|
573
|
+
- spec/fixtures/rails2311/template/config/initializers/session_store.rb
|
574
|
+
- spec/fixtures/rails2311/template/config/locales/en.yml
|
575
|
+
- spec/fixtures/rails2311/template/config/routes.rb
|
576
|
+
- spec/fixtures/rails2311/template/db/seeds.rb
|
577
|
+
- spec/fixtures/rails2311/template/doc/README_FOR_APP
|
578
|
+
- spec/fixtures/rails2311/template/log/development.log
|
579
|
+
- spec/fixtures/rails2311/template/log/production.log
|
580
|
+
- spec/fixtures/rails2311/template/log/server.log
|
581
|
+
- spec/fixtures/rails2311/template/log/test.log
|
582
|
+
- spec/fixtures/rails2311/template/public/404.html
|
583
|
+
- spec/fixtures/rails2311/template/public/422.html
|
584
|
+
- spec/fixtures/rails2311/template/public/500.html
|
585
|
+
- spec/fixtures/rails2311/template/public/favicon.ico
|
586
|
+
- spec/fixtures/rails2311/template/public/images/rails.png
|
587
|
+
- spec/fixtures/rails2311/template/public/index.html
|
588
|
+
- spec/fixtures/rails2311/template/public/javascripts/application.js
|
589
|
+
- spec/fixtures/rails2311/template/public/javascripts/controls.js
|
590
|
+
- spec/fixtures/rails2311/template/public/javascripts/dragdrop.js
|
591
|
+
- spec/fixtures/rails2311/template/public/javascripts/effects.js
|
592
|
+
- spec/fixtures/rails2311/template/public/javascripts/prototype.js
|
593
|
+
- spec/fixtures/rails2311/template/public/robots.txt
|
594
|
+
- spec/fixtures/rails2311/template/script/about
|
595
|
+
- spec/fixtures/rails2311/template/script/console
|
596
|
+
- spec/fixtures/rails2311/template/script/dbconsole
|
597
|
+
- spec/fixtures/rails2311/template/script/destroy
|
598
|
+
- spec/fixtures/rails2311/template/script/generate
|
599
|
+
- spec/fixtures/rails2311/template/script/performance/benchmarker
|
600
|
+
- spec/fixtures/rails2311/template/script/performance/profiler
|
601
|
+
- spec/fixtures/rails2311/template/script/plugin
|
602
|
+
- spec/fixtures/rails2311/template/script/runner
|
603
|
+
- spec/fixtures/rails2311/template/script/server
|
604
|
+
- spec/fixtures/rails2311/template/test/performance/browsing_test.rb
|
605
|
+
- spec/fixtures/rails2311/template/test/test_helper.rb
|
606
|
+
- spec/fixtures/rails32/clean-install/.gitignore
|
607
|
+
- spec/fixtures/rails32/clean-install/Gemfile
|
608
|
+
- spec/fixtures/rails32/clean-install/README.rdoc
|
609
|
+
- spec/fixtures/rails32/clean-install/Rakefile
|
610
|
+
- spec/fixtures/rails32/clean-install/app/assets/images/rails.png
|
611
|
+
- spec/fixtures/rails32/clean-install/app/assets/javascripts/application.js
|
612
|
+
- spec/fixtures/rails32/clean-install/app/assets/stylesheets/application.css
|
613
|
+
- spec/fixtures/rails32/clean-install/app/controllers/application_controller.rb
|
614
|
+
- spec/fixtures/rails32/clean-install/app/helpers/application_helper.rb
|
615
|
+
- spec/fixtures/rails32/clean-install/app/mailers/.gitkeep
|
616
|
+
- spec/fixtures/rails32/clean-install/app/models/.gitkeep
|
617
|
+
- spec/fixtures/rails32/clean-install/app/views/layouts/application.html.erb
|
618
|
+
- spec/fixtures/rails32/clean-install/config.ru
|
619
|
+
- spec/fixtures/rails32/clean-install/config/application.rb
|
620
|
+
- spec/fixtures/rails32/clean-install/config/boot.rb
|
621
|
+
- spec/fixtures/rails32/clean-install/config/database.yml
|
622
|
+
- spec/fixtures/rails32/clean-install/config/environment.rb
|
623
|
+
- spec/fixtures/rails32/clean-install/config/environments/development.rb
|
624
|
+
- spec/fixtures/rails32/clean-install/config/environments/production.rb
|
625
|
+
- spec/fixtures/rails32/clean-install/config/environments/test.rb
|
626
|
+
- spec/fixtures/rails32/clean-install/config/initializers/backtrace_silencers.rb
|
627
|
+
- spec/fixtures/rails32/clean-install/config/initializers/inflections.rb
|
628
|
+
- spec/fixtures/rails32/clean-install/config/initializers/mime_types.rb
|
629
|
+
- spec/fixtures/rails32/clean-install/config/initializers/secret_token.rb
|
630
|
+
- spec/fixtures/rails32/clean-install/config/initializers/session_store.rb
|
631
|
+
- spec/fixtures/rails32/clean-install/config/initializers/wrap_parameters.rb
|
632
|
+
- spec/fixtures/rails32/clean-install/config/locales/en.yml
|
633
|
+
- spec/fixtures/rails32/clean-install/config/routes.rb
|
634
|
+
- spec/fixtures/rails32/clean-install/db/seeds.rb
|
635
|
+
- spec/fixtures/rails32/clean-install/doc/README_FOR_APP
|
636
|
+
- spec/fixtures/rails32/clean-install/lib/assets/.gitkeep
|
637
|
+
- spec/fixtures/rails32/clean-install/lib/tasks/.gitkeep
|
638
|
+
- spec/fixtures/rails32/clean-install/log/.gitkeep
|
639
|
+
- spec/fixtures/rails32/clean-install/public/404.html
|
640
|
+
- spec/fixtures/rails32/clean-install/public/422.html
|
641
|
+
- spec/fixtures/rails32/clean-install/public/500.html
|
642
|
+
- spec/fixtures/rails32/clean-install/public/favicon.ico
|
643
|
+
- spec/fixtures/rails32/clean-install/public/index.html
|
644
|
+
- spec/fixtures/rails32/clean-install/public/robots.txt
|
645
|
+
- spec/fixtures/rails32/clean-install/script/rails
|
646
|
+
- spec/fixtures/rails32/clean-install/test/fixtures/.gitkeep
|
647
|
+
- spec/fixtures/rails32/clean-install/test/functional/.gitkeep
|
648
|
+
- spec/fixtures/rails32/clean-install/test/integration/.gitkeep
|
649
|
+
- spec/fixtures/rails32/clean-install/test/performance/browsing_test.rb
|
650
|
+
- spec/fixtures/rails32/clean-install/test/test_helper.rb
|
651
|
+
- spec/fixtures/rails32/clean-install/test/unit/.gitkeep
|
652
|
+
- spec/fixtures/rails32/clean-install/vendor/assets/javascripts/.gitkeep
|
653
|
+
- spec/fixtures/rails32/clean-install/vendor/assets/stylesheets/.gitkeep
|
654
|
+
- spec/fixtures/rails32/clean-install/vendor/plugins/.gitkeep
|
655
|
+
- spec/fixtures/rails32/fully-loaded/Gemfile
|
656
|
+
- spec/fixtures/rails32/fully-loaded/README.rdoc
|
657
|
+
- spec/fixtures/rails32/fully-loaded/Rakefile
|
658
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/images/rails.png
|
659
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/images/riding-you.jpg
|
660
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/javascripts/application.js
|
661
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/stylesheets/application.css
|
662
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/stylesheets/some-other-css.css
|
663
|
+
- spec/fixtures/rails32/fully-loaded/app/assets/stylesheets/sub-css/sub-css.css
|
664
|
+
- spec/fixtures/rails32/fully-loaded/app/controllers/application_controller.rb
|
665
|
+
- spec/fixtures/rails32/fully-loaded/app/helpers/application_helper.rb
|
666
|
+
- spec/fixtures/rails32/fully-loaded/app/views/layouts/application.html.erb
|
667
|
+
- spec/fixtures/rails32/fully-loaded/config.ru
|
668
|
+
- spec/fixtures/rails32/fully-loaded/config/application.rb
|
669
|
+
- spec/fixtures/rails32/fully-loaded/config/boot.rb
|
670
|
+
- spec/fixtures/rails32/fully-loaded/config/environment.rb
|
671
|
+
- spec/fixtures/rails32/fully-loaded/config/environments/development.rb
|
672
|
+
- spec/fixtures/rails32/fully-loaded/config/environments/production.rb
|
673
|
+
- spec/fixtures/rails32/fully-loaded/config/environments/test.rb
|
674
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/backtrace_silencers.rb
|
675
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/inflections.rb
|
676
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/mime_types.rb
|
677
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/secret_token.rb
|
678
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/session_store.rb
|
679
|
+
- spec/fixtures/rails32/fully-loaded/config/initializers/wrap_parameters.rb
|
680
|
+
- spec/fixtures/rails32/fully-loaded/config/locales/en.yml
|
681
|
+
- spec/fixtures/rails32/fully-loaded/config/routes.rb
|
682
|
+
- spec/fixtures/rails32/fully-loaded/db/seeds.rb
|
683
|
+
- spec/fixtures/rails32/fully-loaded/doc/README_FOR_APP
|
684
|
+
- spec/fixtures/rails32/fully-loaded/public/404.html
|
685
|
+
- spec/fixtures/rails32/fully-loaded/public/422.html
|
686
|
+
- spec/fixtures/rails32/fully-loaded/public/500.html
|
687
|
+
- spec/fixtures/rails32/fully-loaded/public/503-error.html
|
688
|
+
- spec/fixtures/rails32/fully-loaded/public/503.html
|
689
|
+
- spec/fixtures/rails32/fully-loaded/public/favicon.ico
|
690
|
+
- spec/fixtures/rails32/fully-loaded/public/index.html
|
691
|
+
- spec/fixtures/rails32/fully-loaded/public/robots.txt
|
692
|
+
- spec/fixtures/rails32/fully-loaded/script/rails
|
693
|
+
- spec/fixtures/rails32/happy-path/Gemfile
|
694
|
+
- spec/fixtures/rails32/happy-path/README.rdoc
|
695
|
+
- spec/fixtures/rails32/happy-path/Rakefile
|
696
|
+
- spec/fixtures/rails32/happy-path/app/assets/images/rails.png
|
697
|
+
- spec/fixtures/rails32/happy-path/app/assets/javascripts/application.js
|
698
|
+
- spec/fixtures/rails32/happy-path/app/assets/stylesheets/application.css
|
699
|
+
- spec/fixtures/rails32/happy-path/app/controllers/application_controller.rb
|
700
|
+
- spec/fixtures/rails32/happy-path/app/helpers/application_helper.rb
|
701
|
+
- spec/fixtures/rails32/happy-path/app/views/layouts/application.html.erb
|
702
|
+
- spec/fixtures/rails32/happy-path/config.ru
|
703
|
+
- spec/fixtures/rails32/happy-path/config/application.rb
|
704
|
+
- spec/fixtures/rails32/happy-path/config/boot.rb
|
705
|
+
- spec/fixtures/rails32/happy-path/config/environment.rb
|
706
|
+
- spec/fixtures/rails32/happy-path/config/environments/development.rb
|
707
|
+
- spec/fixtures/rails32/happy-path/config/environments/production.rb
|
708
|
+
- spec/fixtures/rails32/happy-path/config/environments/test.rb
|
709
|
+
- spec/fixtures/rails32/happy-path/config/initializers/backtrace_silencers.rb
|
710
|
+
- spec/fixtures/rails32/happy-path/config/initializers/inflections.rb
|
711
|
+
- spec/fixtures/rails32/happy-path/config/initializers/mime_types.rb
|
712
|
+
- spec/fixtures/rails32/happy-path/config/initializers/secret_token.rb
|
713
|
+
- spec/fixtures/rails32/happy-path/config/initializers/session_store.rb
|
714
|
+
- spec/fixtures/rails32/happy-path/config/initializers/wrap_parameters.rb
|
715
|
+
- spec/fixtures/rails32/happy-path/config/locales/en.yml
|
716
|
+
- spec/fixtures/rails32/happy-path/config/routes.rb
|
717
|
+
- spec/fixtures/rails32/happy-path/db/seeds.rb
|
718
|
+
- spec/fixtures/rails32/happy-path/doc/README_FOR_APP
|
719
|
+
- spec/fixtures/rails32/happy-path/public/404.html
|
720
|
+
- spec/fixtures/rails32/happy-path/public/422.html
|
721
|
+
- spec/fixtures/rails32/happy-path/public/500.html
|
722
|
+
- spec/fixtures/rails32/happy-path/public/503-error.html
|
723
|
+
- spec/fixtures/rails32/happy-path/public/503.html
|
724
|
+
- spec/fixtures/rails32/happy-path/public/favicon.ico
|
725
|
+
- spec/fixtures/rails32/happy-path/public/index.html
|
726
|
+
- spec/fixtures/rails32/happy-path/public/robots.txt
|
727
|
+
- spec/fixtures/rails32/happy-path/script/rails
|
728
|
+
- spec/fixtures/sprockets/app/assets/images/a/3/32/allo.png
|
729
|
+
- spec/fixtures/sprockets/app/assets/images/bombero.jpeg
|
730
|
+
- spec/fixtures/sprockets/app/assets/images/bombero/tralala/img.jpg
|
731
|
+
- spec/fixtures/sprockets/app/assets/images/image.jpg
|
732
|
+
- spec/fixtures/sprockets/app/assets/images/img.png
|
733
|
+
- spec/fixtures/sprockets/app/assets/stylesheets/a/css.css
|
734
|
+
- spec/fixtures/sprockets/app/assets/stylesheets/bombero.css
|
735
|
+
- spec/fixtures/sprockets/app/assets/stylesheets/bombero/tralala/trundle.css
|
736
|
+
- spec/fixtures/sprockets/public/assets/rails.png
|
737
|
+
- spec/fixtures/sprockets/public/favicon.png
|
738
|
+
- spec/helpers/act_like_rails2311.rb
|
739
|
+
- spec/helpers/act_like_rails32.rb
|
740
|
+
- spec/helpers/app_creator.rb
|
741
|
+
- spec/helpers/config_helper.rb
|
742
|
+
- spec/helpers/fakable_pathman_tester.rb
|
743
|
+
- spec/html_asset_spec.rb
|
744
|
+
- spec/paths/pathman_spec.rb
|
745
|
+
- spec/paths/rails32_pathman_spec.rb
|
746
|
+
- spec/rails2311/first_push_spec.rb
|
747
|
+
- spec/rails32/first_push_spec.rb
|
748
|
+
- spec/rails32_path_resolver_spec.rb
|
749
|
+
- spec/remote_asset_spec.rb
|
750
|
+
- spec/shippable_spec.rb
|
751
|
+
- spec/spec_helper.rb
|
752
|
+
- spec/sync_spec.rb
|
753
|
+
- spec/test_data/a.js
|
754
|
+
- spec/test_data/all/1.css
|
755
|
+
- spec/test_data/all/2.gif
|
756
|
+
- spec/test_data/all/3.js
|
757
|
+
- spec/test_data/all/all.html
|
758
|
+
- spec/test_data/all/all2.html
|
759
|
+
- spec/test_data/all/all3.html
|
760
|
+
- spec/test_data/b.js
|
761
|
+
- spec/test_data/c.js
|
762
|
+
- spec/test_data/css/image/riding-you.jpg
|
763
|
+
- spec/test_data/css/image/with-image.css
|
764
|
+
- spec/test_data/css/imported-loop1.css
|
765
|
+
- spec/test_data/css/imported-loop2.css
|
766
|
+
- spec/test_data/css/imported.css
|
767
|
+
- spec/test_data/css/imported2.css
|
768
|
+
- spec/test_data/css/recursive/html-with-css.html
|
769
|
+
- spec/test_data/css/recursive/imported-lvl2.css
|
770
|
+
- spec/test_data/css/recursive/imported-lvl3.css
|
771
|
+
- spec/test_data/css/recursive/imported-recursive.css
|
772
|
+
- spec/test_data/css/recursive/riding-you.jpg
|
773
|
+
- spec/test_data/css/with-asset.css
|
774
|
+
- spec/test_data/css/with-multiple-assets.css
|
775
|
+
- spec/test_data/external_paths/1.css
|
776
|
+
- spec/test_data/external_paths/1.html
|
777
|
+
- spec/test_data/sample.html
|
778
|
+
- spec/test_data/test1.jpeg
|
779
|
+
- spec/test_data/test2.png
|
780
|
+
- spec/test_data/test3.gif
|
781
|
+
- spec/test_data/y.css
|
782
|
+
- spec/test_data/z.css
|