contour 2.6.0.beta8 → 2.6.0.rc
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 +2 -2
- data/README.md +2 -2
- data/contour.gemspec +1 -1
- data/lib/contour/version.rb +1 -1
- data/test/dummy/config/environments/production.rb +1 -1
- data/test/dummy/config/environments/test.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1374da16cf44108bc95f9b541e9f79270e2df9b
|
|
4
|
+
data.tar.gz: 5c3af8b489f29cf9e0302636b79c8ab37eec245e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6609cfaffc92484d8efc7450d5498036d2406cb949561b1a229b56219e4afa4f529f94a6b18f8920566323d58160abd71fa1c08df79dcc35392808762cd80e36
|
|
7
|
+
data.tar.gz: 95e2d1ec1337ea1bba24fc4d9fd736123d40f37aff3f66690c67a9086638e71bb4bdaa607dcee078f41be76212d315d7a27953981ce71a463196ffc25d64bb56
|
data/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
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.
|
|
10
|
+
- Use of Ruby 2.2.0 is now recommended
|
|
11
11
|
- **Gem Changes**
|
|
12
|
-
- Updated to rails ~> 4.2.0
|
|
12
|
+
- Updated to rails ~> 4.2.0
|
|
13
13
|
- Updated to devise ~> 3.4.1
|
|
14
14
|
- Updated to coffee-rails ~> 4.1.0
|
|
15
15
|
- Updated to simplecov 0.9.1
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/remomueller/contour)
|
|
4
4
|
[](https://gemnasium.com/remomueller/contour)
|
|
5
|
-
[](https://codeclimate.com/github/remomueller/contour)
|
|
6
6
|
|
|
7
7
|
Basic Rails framework files and assets for layout and authentication
|
|
8
8
|
|
|
@@ -22,7 +22,7 @@ gem 'contour'
|
|
|
22
22
|
|
|
23
23
|
## Getting started
|
|
24
24
|
|
|
25
|
-
Make sure you have Rails 4.
|
|
25
|
+
Make sure you have Rails 4.2.0
|
|
26
26
|
|
|
27
27
|
```
|
|
28
28
|
rails -v
|
data/contour.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ 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'
|
|
28
28
|
s.add_dependency 'jquery-rails', '>= 3.0.4'
|
|
29
29
|
s.add_dependency 'coffee-rails', '~> 4.1.0'
|
|
30
30
|
s.add_dependency 'devise', '~> 3.4.1'
|
data/lib/contour/version.rb
CHANGED
|
@@ -21,7 +21,7 @@ Rails.application.configure do
|
|
|
21
21
|
# config.action_dispatch.rack_cache = true
|
|
22
22
|
|
|
23
23
|
# Disable Rails's static asset server (Apache or NGINX will already do this).
|
|
24
|
-
config.
|
|
24
|
+
config.serve_static_files = false
|
|
25
25
|
|
|
26
26
|
# Compress JavaScripts and CSS.
|
|
27
27
|
config.assets.js_compressor = :uglifier
|
|
@@ -13,7 +13,7 @@ Rails.application.configure do
|
|
|
13
13
|
config.eager_load = false
|
|
14
14
|
|
|
15
15
|
# Configure static asset server for tests with Cache-Control for performance.
|
|
16
|
-
config.
|
|
16
|
+
config.serve_static_files = true
|
|
17
17
|
config.static_cache_control = 'public, max-age=3600'
|
|
18
18
|
|
|
19
19
|
# Show full error reports and disable caching.
|
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.rc
|
|
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-12-30 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
|
|
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
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: jquery-rails
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
384
384
|
version: 1.3.1
|
|
385
385
|
requirements: []
|
|
386
386
|
rubyforge_project:
|
|
387
|
-
rubygems_version: 2.
|
|
387
|
+
rubygems_version: 2.4.5
|
|
388
388
|
signing_key:
|
|
389
389
|
specification_version: 4
|
|
390
390
|
summary: Basic Rails framework files and assets for layout and authentication
|