contour 2.6.0.beta7 → 2.6.0.beta8
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/CHANGELOG.md +5 -3
- data/contour.gemspec +3 -3
- data/lib/contour/version.rb +1 -1
- data/test/dummy/Rakefile +1 -2
- data/test/dummy/config/application.rb +1 -1
- data/test/dummy/config/environment.rb +3 -3
- data/test/dummy/config/environments/development.rb +14 -2
- data/test/dummy/config/environments/production.rb +17 -20
- data/test/dummy/config/environments/test.rb +8 -2
- data/test/dummy/config/initializers/session_store.rb +1 -1
- data/test/dummy/config/routes.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f6771ecb4c59406966a5590d348672f396b9e2f
|
4
|
+
data.tar.gz: ea34d0b141524a15bbf00874a8f49d042c558252
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc30911b3f6d05471442bed65087fa920a3e640c55c528e40b1cec23bb7f8d7638ae5c764e24dd4643d7df7a770dac6bb5361a6cc69c4ae5905b89961b4dcb62
|
7
|
+
data.tar.gz: 49d206563e9e93af2e5b0f0236893ff2b942463e927d1229b43e7e5677def9e4d8c5fcdfa2c4960eb38a582a11f04230242d344dc73adbefe99cb165edbbf72f
|
data/CHANGELOG.md
CHANGED
@@ -7,10 +7,12 @@
|
|
7
7
|
- Added the OpenSans webfont as the default font
|
8
8
|
- Simplified inclusion of Bootstrap using `bootstrap-sass`
|
9
9
|
- This allows the app to be themed by including all or parts of a modified `variables.scss` in the application's `application.css.scss` file
|
10
|
-
- Use of Ruby 2.1.
|
10
|
+
- Use of Ruby 2.1.4 is now recommended
|
11
11
|
- **Gem Changes**
|
12
|
-
- Updated to rails ~> 4.2.0.
|
13
|
-
- Updated to devise ~> 3.4.
|
12
|
+
- Updated to rails ~> 4.2.0.beta4
|
13
|
+
- Updated to devise ~> 3.4.1
|
14
|
+
- Updated to coffee-rails ~> 4.1.0
|
15
|
+
- Updated to simplecov 0.9.1
|
14
16
|
|
15
17
|
## 2.5.0 (May 8, 2014)
|
16
18
|
|
data/contour.gemspec
CHANGED
@@ -24,10 +24,10 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.files = Dir['{app,config,db,lib}/**/*'] + ['CHANGELOG.md', 'contour.gemspec', 'LICENSE', 'Rakefile', 'README.md']
|
25
25
|
s.test_files = Dir['test/**/*'] - Dir['test/dummy/{tmp,log}/**/*']
|
26
26
|
|
27
|
-
s.add_dependency 'rails', '~> 4.2.0.
|
27
|
+
s.add_dependency 'rails', '~> 4.2.0.beta4'
|
28
28
|
s.add_dependency 'jquery-rails', '>= 3.0.4'
|
29
|
-
s.add_dependency 'coffee-rails', '~> 4.0
|
30
|
-
s.add_dependency 'devise', '~> 3.4.
|
29
|
+
s.add_dependency 'coffee-rails', '~> 4.1.0'
|
30
|
+
s.add_dependency 'devise', '~> 3.4.1'
|
31
31
|
s.add_dependency 'omniauth', '~> 1.2.1'
|
32
32
|
s.add_dependency 'omniauth-ldap', '~> 1.0.4'
|
33
33
|
s.add_dependency 'omniauth-openid', '~> 1.0.1'
|
data/lib/contour/version.rb
CHANGED
data/test/dummy/Rakefile
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
#!/usr/bin/env rake
|
2
1
|
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
2
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
3
|
|
5
4
|
require File.expand_path('../config/application', __FILE__)
|
6
5
|
|
7
|
-
|
6
|
+
Rails.application.load_tasks
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# In the development environment your application's code is reloaded on
|
@@ -19,11 +19,23 @@ Dummy::Application.configure do
|
|
19
19
|
# Print deprecation notices to the Rails logger.
|
20
20
|
config.active_support.deprecation = :log
|
21
21
|
|
22
|
-
# Raise an error on page load if there are pending migrations
|
22
|
+
# Raise an error on page load if there are pending migrations.
|
23
23
|
config.active_record.migration_error = :page_load
|
24
24
|
|
25
25
|
# Debug mode disables concatenation and preprocessing of assets.
|
26
26
|
# This option may cause significant delays in view rendering with a large
|
27
27
|
# number of complex assets.
|
28
28
|
config.assets.debug = true
|
29
|
+
|
30
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
31
|
+
# yet still be able to expire them through the digest params.
|
32
|
+
config.assets.digest = true
|
33
|
+
|
34
|
+
# Adds additional error checking when serving assets at runtime.
|
35
|
+
# Checks for improperly declared sprockets dependencies.
|
36
|
+
# Raises helpful error messages.
|
37
|
+
config.assets.raise_runtime_errors = true
|
38
|
+
|
39
|
+
# Raises error for missing translations
|
40
|
+
# config.action_view.raise_on_missing_translations = true
|
29
41
|
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
7
|
# Eager load code on boot. This eager loads most of Rails and
|
8
|
-
# your application in memory, allowing both
|
8
|
+
# your application in memory, allowing both threaded web servers
|
9
9
|
# and those relying on copy on write to perform better.
|
10
10
|
# Rake tasks automatically ignore this option for performance.
|
11
11
|
config.eager_load = true
|
@@ -16,10 +16,11 @@ Dummy::Application.configure do
|
|
16
16
|
|
17
17
|
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
18
|
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
-
# For large-scale production use, consider using a caching reverse proxy like
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like
|
20
|
+
# NGINX, varnish or squid.
|
20
21
|
# config.action_dispatch.rack_cache = true
|
21
22
|
|
22
|
-
# Disable Rails's static asset server (Apache or
|
23
|
+
# Disable Rails's static asset server (Apache or NGINX will already do this).
|
23
24
|
config.serve_static_assets = false
|
24
25
|
|
25
26
|
# Compress JavaScripts and CSS.
|
@@ -29,21 +30,21 @@ Dummy::Application.configure do
|
|
29
30
|
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
31
|
config.assets.compile = false
|
31
32
|
|
32
|
-
#
|
33
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
34
|
+
# yet still be able to expire them through the digest params.
|
33
35
|
config.assets.digest = true
|
34
36
|
|
35
|
-
#
|
36
|
-
config.assets.version = '1.0'
|
37
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
37
38
|
|
38
39
|
# Specifies the header that your server uses for sending files.
|
39
|
-
# config.action_dispatch.x_sendfile_header =
|
40
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
41
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
41
42
|
|
42
43
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
44
|
# config.force_ssl = true
|
44
45
|
|
45
|
-
#
|
46
|
-
config.log_level = :info
|
46
|
+
# Decrease the log volume.
|
47
|
+
# config.log_level = :info
|
47
48
|
|
48
49
|
# Prepend all log lines with the following tags.
|
49
50
|
# config.log_tags = [ :subdomain, :uuid ]
|
@@ -55,26 +56,22 @@ Dummy::Application.configure do
|
|
55
56
|
# config.cache_store = :mem_cache_store
|
56
57
|
|
57
58
|
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
-
# config.action_controller.asset_host =
|
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 )
|
59
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
63
60
|
|
64
61
|
# Ignore bad email addresses and do not raise email delivery errors.
|
65
62
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
63
|
# config.action_mailer.raise_delivery_errors = false
|
67
64
|
|
68
65
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
-
# the I18n.default_locale when a translation
|
66
|
+
# the I18n.default_locale when a translation cannot be found).
|
70
67
|
config.i18n.fallbacks = true
|
71
68
|
|
72
69
|
# Send deprecation notices to registered listeners.
|
73
70
|
config.active_support.deprecation = :notify
|
74
71
|
|
75
|
-
# Disable automatic flushing of the log to improve performance.
|
76
|
-
# config.autoflush_log = false
|
77
|
-
|
78
72
|
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
73
|
config.log_formatter = ::Logger::Formatter.new
|
74
|
+
|
75
|
+
# Do not dump schema after migrations.
|
76
|
+
config.active_record.dump_schema_after_migration = false
|
80
77
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
Rails.application.configure do
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
@@ -14,7 +14,7 @@ Dummy::Application.configure do
|
|
14
14
|
|
15
15
|
# Configure static asset server for tests with Cache-Control for performance.
|
16
16
|
config.serve_static_assets = true
|
17
|
-
config.static_cache_control =
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
18
|
|
19
19
|
# Show full error reports and disable caching.
|
20
20
|
config.consider_all_requests_local = true
|
@@ -31,6 +31,12 @@ Dummy::Application.configure do
|
|
31
31
|
# ActionMailer::Base.deliveries array.
|
32
32
|
config.action_mailer.delivery_method = :test
|
33
33
|
|
34
|
+
# Randomize the order test cases are executed
|
35
|
+
config.active_support.test_order = :random
|
36
|
+
|
34
37
|
# Print deprecation notices to the stderr.
|
35
38
|
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
36
42
|
end
|
data/test/dummy/config/routes.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
Rails.application.routes.draw do
|
2
2
|
|
3
3
|
devise_for :users, controllers: { registrations: 'contour/registrations', sessions: 'contour/sessions', passwords: 'contour/passwords', confirmations: 'contour/confirmations', unlocks: 'contour/unlocks' }, path_names: { sign_up: 'register', sign_in: 'login' }
|
4
4
|
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.0.
|
4
|
+
version: 2.6.0.beta8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Remo Mueller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.2.0.
|
19
|
+
version: 4.2.0.beta4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 4.2.0.
|
26
|
+
version: 4.2.0.beta4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: jquery-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 4.0
|
47
|
+
version: 4.1.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 4.0
|
54
|
+
version: 4.1.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: devise
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.4.
|
61
|
+
version: 3.4.1
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.4.
|
68
|
+
version: 3.4.1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: omniauth
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|