overlay 0.0.6 → 0.0.7
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 +4 -4
- data/README.rdoc +13 -1
- data/lib/overlay/configuration.rb +4 -0
- data/lib/overlay/github.rb +9 -8
- data/lib/overlay/version.rb +1 -1
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +138 -0
- data/spec/dummy/spec/controllers/overlay/github_controller_spec.rb +18 -0
- data/spec/dummy/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/spec/dummy/Rakefile +6 -0
- data/spec/dummy/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/spec/dummy/bin/rails +4 -0
- data/spec/dummy/spec/dummy/bin/rake +4 -0
- data/spec/dummy/spec/dummy/config.ru +4 -0
- data/spec/dummy/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/spec/dummy/config/environments/development.rb +27 -0
- data/spec/dummy/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/spec/dummy/config/initializers/wrap_parameters.rb +10 -0
- data/spec/dummy/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/spec/dummy/public/404.html +58 -0
- data/spec/dummy/spec/dummy/public/422.html +58 -0
- data/spec/github_spec.rb +99 -0
- metadata +64 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f8136668cb8383971b94596bd0a3df395480e02
|
4
|
+
data.tar.gz: ed6b3800003aea8c0b62e7e0dd567b0731385433
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f81f9d3a45f100342b32a413fe3d25b2de17aab4a269b4b7014c549e0e780acd5094b793544844257cedfe213381f3a7b3757f11030f32998c88600d4afc52a6
|
7
|
+
data.tar.gz: 0396978e489d3608a72518dbdc2ca5d122c3282bcab66ac7da4c33ab5bf3c1107e28bb1bf53b62109141609fd6512f99430a2b7ccf493adc6770f2de6ae60a1f
|
data/README.rdoc
CHANGED
data/lib/overlay/github.rb
CHANGED
@@ -8,11 +8,6 @@ module Overlay
|
|
8
8
|
# Cycle through all configured repositories and overlay
|
9
9
|
#
|
10
10
|
def self.process_overlays
|
11
|
-
# If we aren't running in Rails, bail out. This may be some
|
12
|
-
# other request such as rake routes loading the environment
|
13
|
-
#
|
14
|
-
return unless defined?(Rails::Server)
|
15
|
-
|
16
11
|
# Configure github api
|
17
12
|
configure
|
18
13
|
|
@@ -38,8 +33,8 @@ module Overlay
|
|
38
33
|
Rails.application.reload_routes!
|
39
34
|
|
40
35
|
# Build hook url
|
41
|
-
host = config.hostname ||
|
42
|
-
port = config.host_port ||
|
36
|
+
host = config.hostname || ENV['HOST_NAME']
|
37
|
+
port = config.host_port || ENV['HOST_PORT']
|
43
38
|
path = Overlay::Engine.routes.url_for({:controller=>"overlay/github", :action=>"update", :only_path => true})
|
44
39
|
uri = ActionDispatch::Http::URL::url_for({:host => host, :port => port, :path => "#{config.relative_root_url}#{path}"})
|
45
40
|
|
@@ -55,7 +50,13 @@ module Overlay
|
|
55
50
|
# Get our root entries
|
56
51
|
#
|
57
52
|
root = repo_config[:root_source_path] || '/'
|
58
|
-
|
53
|
+
|
54
|
+
# If we have a root defined, jump right into it
|
55
|
+
#
|
56
|
+
if (root != '/')
|
57
|
+
overlay_directory(root, repo_config)
|
58
|
+
return
|
59
|
+
end
|
59
60
|
|
60
61
|
root_entries = github_repo.contents.get(repo_config[:user], repo_config[:repo], root, ref: repo_config[:branch]).response.body
|
61
62
|
|
data/lib/overlay/version.rb
CHANGED
File without changes
|
data/spec/dummy/log/test.log
CHANGED
@@ -4,3 +4,141 @@ Completed 200 OK in 7ms (Views: 6.5ms)
|
|
4
4
|
Processing by Overlay::GithubController#update as HTML
|
5
5
|
Rendered inline template (0.6ms)
|
6
6
|
Completed 200 OK in 4ms (Views: 3.3ms)
|
7
|
+
Processing by Overlay::GithubController#update as HTML
|
8
|
+
Rendered inline template (1.1ms)
|
9
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
10
|
+
Processing by Overlay::GithubController#update as HTML
|
11
|
+
Rendered inline template (0.6ms)
|
12
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
13
|
+
Processing by Overlay::GithubController#update as HTML
|
14
|
+
Rendered inline template (0.6ms)
|
15
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
16
|
+
Processing by Overlay::GithubController#update as HTML
|
17
|
+
Rendered inline template (0.7ms)
|
18
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
19
|
+
Processing by Overlay::GithubController#update as HTML
|
20
|
+
Rendered inline template (0.6ms)
|
21
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
22
|
+
Processing by Overlay::GithubController#update as HTML
|
23
|
+
Rendered inline template (1.1ms)
|
24
|
+
Completed 200 OK in 8ms (Views: 6.6ms)
|
25
|
+
Processing by Overlay::GithubController#update as HTML
|
26
|
+
Rendered inline template (0.6ms)
|
27
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
28
|
+
Processing by Overlay::GithubController#update as HTML
|
29
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
30
|
+
Processing by Overlay::GithubController#update as HTML
|
31
|
+
Rendered inline template (0.6ms)
|
32
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
33
|
+
Processing by Overlay::GithubController#update as HTML
|
34
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
35
|
+
Processing by Overlay::GithubController#update as HTML
|
36
|
+
Rendered inline template (0.6ms)
|
37
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
38
|
+
Processing by Overlay::GithubController#update as HTML
|
39
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
40
|
+
Processing by Overlay::GithubController#update as HTML
|
41
|
+
Rendered inline template (0.6ms)
|
42
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
43
|
+
Processing by Overlay::GithubController#update as HTML
|
44
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
45
|
+
Processing by Overlay::GithubController#update as HTML
|
46
|
+
Rendered inline template (0.7ms)
|
47
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
48
|
+
Processing by Overlay::GithubController#update as HTML
|
49
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
50
|
+
Processing by Overlay::GithubController#update as HTML
|
51
|
+
Rendered inline template (0.7ms)
|
52
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
53
|
+
Processing by Overlay::GithubController#update as HTML
|
54
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
55
|
+
Processing by Overlay::GithubController#update as HTML
|
56
|
+
Rendered inline template (0.6ms)
|
57
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
58
|
+
Processing by Overlay::GithubController#update as HTML
|
59
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
60
|
+
Processing by Overlay::GithubController#update as HTML
|
61
|
+
Rendered inline template (0.6ms)
|
62
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
63
|
+
Processing by Overlay::GithubController#update as HTML
|
64
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
65
|
+
Processing by Overlay::GithubController#update as HTML
|
66
|
+
Rendered inline template (0.6ms)
|
67
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
68
|
+
Processing by Overlay::GithubController#update as HTML
|
69
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
70
|
+
Processing by Overlay::GithubController#update as HTML
|
71
|
+
Rendered inline template (0.7ms)
|
72
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
73
|
+
Processing by Overlay::GithubController#update as HTML
|
74
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
75
|
+
Processing by Overlay::GithubController#update as HTML
|
76
|
+
Rendered inline template (0.7ms)
|
77
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
78
|
+
Processing by Overlay::GithubController#update as HTML
|
79
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
80
|
+
Processing by Overlay::GithubController#update as HTML
|
81
|
+
Rendered inline template (0.6ms)
|
82
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
83
|
+
Processing by Overlay::GithubController#update as HTML
|
84
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
85
|
+
Processing by Overlay::GithubController#update as HTML
|
86
|
+
Rendered inline template (0.9ms)
|
87
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
88
|
+
Processing by Overlay::GithubController#update as HTML
|
89
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
90
|
+
Processing by Overlay::GithubController#update as HTML
|
91
|
+
Rendered inline template (0.6ms)
|
92
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
93
|
+
Processing by Overlay::GithubController#update as HTML
|
94
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
95
|
+
Processing by Overlay::GithubController#update as HTML
|
96
|
+
Rendered inline template (0.6ms)
|
97
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
98
|
+
Processing by Overlay::GithubController#update as HTML
|
99
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
100
|
+
Processing by Overlay::GithubController#update as HTML
|
101
|
+
Rendered inline template (0.6ms)
|
102
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
103
|
+
Processing by Overlay::GithubController#update as HTML
|
104
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
105
|
+
Processing by Overlay::GithubController#update as HTML
|
106
|
+
Rendered inline template (0.7ms)
|
107
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
108
|
+
Processing by Overlay::GithubController#update as HTML
|
109
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
110
|
+
Processing by Overlay::GithubController#update as HTML
|
111
|
+
Rendered inline template (0.6ms)
|
112
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
113
|
+
Processing by Overlay::GithubController#update as HTML
|
114
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
115
|
+
Processing by Overlay::GithubController#update as HTML
|
116
|
+
Rendered inline template (0.7ms)
|
117
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
118
|
+
Processing by Overlay::GithubController#update as HTML
|
119
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
120
|
+
Processing by Overlay::GithubController#update as HTML
|
121
|
+
Rendered inline template (0.7ms)
|
122
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
123
|
+
Processing by Overlay::GithubController#update as HTML
|
124
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
125
|
+
Processing by Overlay::GithubController#update as HTML
|
126
|
+
Rendered inline template (0.8ms)
|
127
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
128
|
+
Processing by Overlay::GithubController#update as HTML
|
129
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
130
|
+
Processing by Overlay::GithubController#update as HTML
|
131
|
+
Rendered inline template (0.7ms)
|
132
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
133
|
+
Processing by Overlay::GithubController#update as HTML
|
134
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
135
|
+
Processing by Overlay::GithubController#update as HTML
|
136
|
+
Rendered inline template (0.7ms)
|
137
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
138
|
+
Processing by Overlay::GithubController#update as HTML
|
139
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
140
|
+
Processing by Overlay::GithubController#update as HTML
|
141
|
+
Rendered inline template (1.1ms)
|
142
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
143
|
+
Processing by Overlay::GithubController#update as HTML
|
144
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Overlay
|
4
|
+
describe GithubController do
|
5
|
+
before :each do
|
6
|
+
Overlay.configure do |config|
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "POST 'update'" do
|
11
|
+
it "returns http success" do
|
12
|
+
post 'update', {:use_route => :overlay}
|
13
|
+
response.should be_success
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Dummy</title>
|
5
|
+
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
6
|
+
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
# require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
# require "sprockets/railtie"
|
8
|
+
# require "rails/test_unit/railtie"
|
9
|
+
|
10
|
+
Bundler.require(*Rails.groups)
|
11
|
+
require "overlay"
|
12
|
+
|
13
|
+
module Dummy
|
14
|
+
class Application < Rails::Application
|
15
|
+
# Settings in config/environments/* take precedence over those specified here.
|
16
|
+
# Application configuration should go into files in config/initializers
|
17
|
+
# -- all .rb files in that directory are automatically loaded.
|
18
|
+
|
19
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
20
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
21
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
22
|
+
|
23
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
24
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
25
|
+
# config.i18n.default_locale = :de
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
|
23
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
24
|
+
# This option may cause significant delays in view rendering with a large
|
25
|
+
# number of complex assets.
|
26
|
+
config.assets.debug = true
|
27
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
+
config.serve_static_assets = false
|
24
|
+
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
31
|
+
|
32
|
+
# Generate digests for assets URLs.
|
33
|
+
config.assets.digest = true
|
34
|
+
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
37
|
+
|
38
|
+
# Specifies the header that your server uses for sending files.
|
39
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
41
|
+
|
42
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
|
+
# config.force_ssl = true
|
44
|
+
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
47
|
+
|
48
|
+
# Prepend all log lines with the following tags.
|
49
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
|
51
|
+
# Use a different logger for distributed setups.
|
52
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
53
|
+
|
54
|
+
# Use a different cache store in production.
|
55
|
+
# config.cache_store = :mem_cache_store
|
56
|
+
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
59
|
+
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
+
# config.assets.precompile += %w( search.js )
|
63
|
+
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
|
+
# config.action_mailer.raise_delivery_errors = false
|
67
|
+
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
70
|
+
config.i18n.fallbacks = true
|
71
|
+
|
72
|
+
# Send deprecation notices to registered listeners.
|
73
|
+
config.active_support.deprecation = :notify
|
74
|
+
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
80
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = '59bd7af14634917a9c679056ab9c0798c63ca67429f5e5cf11e92ad3435b4e6dd84b61e37110760574f3ac6051c3d7a2bcf5faa14206dd9ec49da2f9aa78f2b7'
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/404.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/422.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
data/spec/github_spec.rb
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Overlay::Github do
|
4
|
+
before :each do
|
5
|
+
# Configure the overlay
|
6
|
+
Overlay.configuration.reset if Overlay.configuration
|
7
|
+
|
8
|
+
Overlay.configure do |config|
|
9
|
+
config.auth = 'test_user:test_password'
|
10
|
+
config.repositories << Overlay::GithubRepo.new('saarinen', 'overlay', 'master', 'spec', 'spec')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "process overlays" do
|
15
|
+
it "should configure the github_api" do
|
16
|
+
Overlay::Github.stub(:register_web_hook).and_return
|
17
|
+
Overlay::Github.stub(:overlay_repo).and_return
|
18
|
+
|
19
|
+
Overlay::Github.should_receive(:configure).once
|
20
|
+
Overlay::Github.process_overlays
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should verify the user and repo config" do
|
24
|
+
Overlay::Github.stub(:register_web_hook).and_return
|
25
|
+
Overlay::Github.stub(:overlay_repo).and_return
|
26
|
+
|
27
|
+
Overlay.configuration.repositories << Overlay::GithubRepo.new(nil, nil, 'master', 'spec', 'spec')
|
28
|
+
|
29
|
+
expect{Overlay::Github.process_overlays}.to raise_error("Respository config missing user")
|
30
|
+
|
31
|
+
Overlay.configuration.reset
|
32
|
+
|
33
|
+
Overlay.configuration.repositories << Overlay::GithubRepo.new("test", nil, 'master', 'spec', 'spec')
|
34
|
+
|
35
|
+
expect{Overlay::Github.process_overlays}.to raise_error("Respository config missing repo")
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should call to add a web_hook" do
|
39
|
+
Overlay::Github.stub(:overlay_repo).and_return
|
40
|
+
|
41
|
+
Overlay::Github.should_receive(:register_web_hook).once.and_return
|
42
|
+
Overlay::Github.process_overlays
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should overlay the repo" do
|
46
|
+
Overlay::Github.stub(:register_web_hook).and_return
|
47
|
+
|
48
|
+
Overlay::Github.should_receive(:overlay_repo).once.and_return
|
49
|
+
Overlay::Github.process_overlays
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "configure github_api" do
|
54
|
+
it "should call github api configure" do
|
55
|
+
::Github.should_receive(:configure).once
|
56
|
+
Overlay::Github.configure
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should set a custom site address" do
|
60
|
+
Overlay.configuration.site = "http://www.example.com"
|
61
|
+
Overlay::Github.configure
|
62
|
+
expect(::Github::Repos.new.site).to eq("http://www.example.com")
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should verify basic auth" do
|
66
|
+
Overlay.configuration.auth = nil
|
67
|
+
expect{Overlay::Github.configure}.to raise_error("Configuration github_overlays.basic_auth not set")
|
68
|
+
end
|
69
|
+
|
70
|
+
it "should set auth" do
|
71
|
+
Overlay::Github.configure
|
72
|
+
expect(::Github::Repos.new.basic_auth).to eq('test_user:test_password')
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe "overlay_repo" do
|
77
|
+
it "should jump directly to overlay_directory if root set" do
|
78
|
+
repo_config = Overlay::GithubRepo.new('saarinen', 'overlay', 'master', 'spec', 'spec')
|
79
|
+
Overlay::Github.should_receive(:overlay_directory).once.with('spec', repo_config).and_return
|
80
|
+
Overlay::Github.overlay_repo repo_config
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should ignore any files in repo root"
|
84
|
+
|
85
|
+
it "should process all directories in repo root"
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "overlay_directory" do
|
89
|
+
it "should set path correctly based on root"
|
90
|
+
it "should create path for directory"
|
91
|
+
it "should call clone_files for all files in directory"
|
92
|
+
it "should call overlay_directory for all directories"
|
93
|
+
end
|
94
|
+
|
95
|
+
describe "clone_file" do
|
96
|
+
it "should create a file for the cloned file"
|
97
|
+
it "should corrctly set the file path"
|
98
|
+
end
|
99
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: overlay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Saarinen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-06-
|
11
|
+
date: 2013-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -99,6 +99,7 @@ files:
|
|
99
99
|
- spec/dummy/config/locales/en.yml
|
100
100
|
- spec/dummy/config/routes.rb
|
101
101
|
- spec/dummy/config.ru
|
102
|
+
- spec/dummy/log/development.log
|
102
103
|
- spec/dummy/log/test.log
|
103
104
|
- spec/dummy/public/404.html
|
104
105
|
- spec/dummy/public/422.html
|
@@ -106,6 +107,36 @@ files:
|
|
106
107
|
- spec/dummy/public/favicon.ico
|
107
108
|
- spec/dummy/Rakefile
|
108
109
|
- spec/dummy/README.rdoc
|
110
|
+
- spec/dummy/spec/controllers/overlay/github_controller_spec.rb
|
111
|
+
- spec/dummy/spec/dummy/app/assets/javascripts/application.js
|
112
|
+
- spec/dummy/spec/dummy/app/assets/stylesheets/application.css
|
113
|
+
- spec/dummy/spec/dummy/app/controllers/application_controller.rb
|
114
|
+
- spec/dummy/spec/dummy/app/helpers/application_helper.rb
|
115
|
+
- spec/dummy/spec/dummy/app/views/layouts/application.html.erb
|
116
|
+
- spec/dummy/spec/dummy/bin/bundle
|
117
|
+
- spec/dummy/spec/dummy/bin/rails
|
118
|
+
- spec/dummy/spec/dummy/bin/rake
|
119
|
+
- spec/dummy/spec/dummy/config/application.rb
|
120
|
+
- spec/dummy/spec/dummy/config/boot.rb
|
121
|
+
- spec/dummy/spec/dummy/config/environment.rb
|
122
|
+
- spec/dummy/spec/dummy/config/environments/development.rb
|
123
|
+
- spec/dummy/spec/dummy/config/environments/production.rb
|
124
|
+
- spec/dummy/spec/dummy/config/environments/test.rb
|
125
|
+
- spec/dummy/spec/dummy/config/initializers/backtrace_silencers.rb
|
126
|
+
- spec/dummy/spec/dummy/config/initializers/filter_parameter_logging.rb
|
127
|
+
- spec/dummy/spec/dummy/config/initializers/inflections.rb
|
128
|
+
- spec/dummy/spec/dummy/config/initializers/mime_types.rb
|
129
|
+
- spec/dummy/spec/dummy/config/initializers/secret_token.rb
|
130
|
+
- spec/dummy/spec/dummy/config/initializers/session_store.rb
|
131
|
+
- spec/dummy/spec/dummy/config/initializers/wrap_parameters.rb
|
132
|
+
- spec/dummy/spec/dummy/config/locales/en.yml
|
133
|
+
- spec/dummy/spec/dummy/config/routes.rb
|
134
|
+
- spec/dummy/spec/dummy/config.ru
|
135
|
+
- spec/dummy/spec/dummy/public/404.html
|
136
|
+
- spec/dummy/spec/dummy/public/422.html
|
137
|
+
- spec/dummy/spec/dummy/Rakefile
|
138
|
+
- spec/dummy/spec/dummy/README.rdoc
|
139
|
+
- spec/github_spec.rb
|
109
140
|
- spec/spec_helper.rb
|
110
141
|
homepage: http://stevesaarinen.com
|
111
142
|
licenses: []
|
@@ -156,6 +187,7 @@ test_files:
|
|
156
187
|
- spec/dummy/config/locales/en.yml
|
157
188
|
- spec/dummy/config/routes.rb
|
158
189
|
- spec/dummy/config.ru
|
190
|
+
- spec/dummy/log/development.log
|
159
191
|
- spec/dummy/log/test.log
|
160
192
|
- spec/dummy/public/404.html
|
161
193
|
- spec/dummy/public/422.html
|
@@ -163,4 +195,34 @@ test_files:
|
|
163
195
|
- spec/dummy/public/favicon.ico
|
164
196
|
- spec/dummy/Rakefile
|
165
197
|
- spec/dummy/README.rdoc
|
198
|
+
- spec/dummy/spec/controllers/overlay/github_controller_spec.rb
|
199
|
+
- spec/dummy/spec/dummy/app/assets/javascripts/application.js
|
200
|
+
- spec/dummy/spec/dummy/app/assets/stylesheets/application.css
|
201
|
+
- spec/dummy/spec/dummy/app/controllers/application_controller.rb
|
202
|
+
- spec/dummy/spec/dummy/app/helpers/application_helper.rb
|
203
|
+
- spec/dummy/spec/dummy/app/views/layouts/application.html.erb
|
204
|
+
- spec/dummy/spec/dummy/bin/bundle
|
205
|
+
- spec/dummy/spec/dummy/bin/rails
|
206
|
+
- spec/dummy/spec/dummy/bin/rake
|
207
|
+
- spec/dummy/spec/dummy/config/application.rb
|
208
|
+
- spec/dummy/spec/dummy/config/boot.rb
|
209
|
+
- spec/dummy/spec/dummy/config/environment.rb
|
210
|
+
- spec/dummy/spec/dummy/config/environments/development.rb
|
211
|
+
- spec/dummy/spec/dummy/config/environments/production.rb
|
212
|
+
- spec/dummy/spec/dummy/config/environments/test.rb
|
213
|
+
- spec/dummy/spec/dummy/config/initializers/backtrace_silencers.rb
|
214
|
+
- spec/dummy/spec/dummy/config/initializers/filter_parameter_logging.rb
|
215
|
+
- spec/dummy/spec/dummy/config/initializers/inflections.rb
|
216
|
+
- spec/dummy/spec/dummy/config/initializers/mime_types.rb
|
217
|
+
- spec/dummy/spec/dummy/config/initializers/secret_token.rb
|
218
|
+
- spec/dummy/spec/dummy/config/initializers/session_store.rb
|
219
|
+
- spec/dummy/spec/dummy/config/initializers/wrap_parameters.rb
|
220
|
+
- spec/dummy/spec/dummy/config/locales/en.yml
|
221
|
+
- spec/dummy/spec/dummy/config/routes.rb
|
222
|
+
- spec/dummy/spec/dummy/config.ru
|
223
|
+
- spec/dummy/spec/dummy/public/404.html
|
224
|
+
- spec/dummy/spec/dummy/public/422.html
|
225
|
+
- spec/dummy/spec/dummy/Rakefile
|
226
|
+
- spec/dummy/spec/dummy/README.rdoc
|
227
|
+
- spec/github_spec.rb
|
166
228
|
- spec/spec_helper.rb
|