contour 2.6.0.beta2 → 2.6.0.beta3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46d44025def303c6df4d4e275fa63e98739334c0
4
- data.tar.gz: 4a1487b5f2562c6f0f7def1796a0a3500cbd9731
3
+ metadata.gz: b5f5503ea5751cd282ecc3265ce24c5482eee1f8
4
+ data.tar.gz: 31aa59f1d59142cabac39556139e58860d8ef2d5
5
5
  SHA512:
6
- metadata.gz: 9a1dfa5ebd05c7d899d304b9f3ebaa1a8ec8cd4b1625fc9d3c2f31a0c4781da1374a523c76f5cbe7eae2d6e65532e0d0a3625fc83e2b9003c0755ba7517d2956
7
- data.tar.gz: 8de697ec73ad5cff0338163a0b79b37217f23a6e95b67fdd88f5ee19a5569ad99d6f6424188050473c75d1fe19f20d7cfa95b009178248a585cb3344a8d79222
6
+ metadata.gz: 9fa6be4b12ff3ae660c2da30c923d0646e6290501ec18a9fec9c850bc4513cee5a540b6eb1f1997044ca1d3b602720b3edc13e164a32a00a089f0203626ece6a
7
+ data.tar.gz: fc66dac1acc698eda5cf2dc70e32f4ce1f770224cd64b6358e32ff7f8d02e158f4cb2eb5b7162d8fb9582ea4cc292740c1c9d6e67ad22a9d37fe584d7cfd3c07
@@ -7,3 +7,4 @@
7
7
  @import 'jquery-ui-1.10.0.custom';
8
8
  @import 'datepicker';
9
9
  @import 'contour/about';
10
+ @import 'glyphicon-overrides';
@@ -0,0 +1,13 @@
1
+ @font-face {
2
+ font-family: 'Glyphicons Halflings Contour';
3
+ src:url('bootstrap/glyphicons-halflings-regular<%= asset_path('bootstrap/glyphicons-halflings-regular.eot').split('glyphicons-halflings-regular').last %>');
4
+
5
+ src:url('bootstrap/glyphicons-halflings-regular<%= asset_path('bootstrap/glyphicons-halflings-regular.eot').split('glyphicons-halflings-regular').last %>?#iefix') format('embedded-opentype'),
6
+ url('bootstrap/glyphicons-halflings-regular<%= asset_path('bootstrap/glyphicons-halflings-regular.woff').split('glyphicons-halflings-regular').last %>') format('woff'),
7
+ url('bootstrap/glyphicons-halflings-regular<%= asset_path('bootstrap/glyphicons-halflings-regular.ttf').split('glyphicons-halflings-regular').last %>') format('truetype'),
8
+ url('bootstrap/glyphicons-halflings-regular<%= asset_path('bootstrap/glyphicons-halflings-regular.svg').split('glyphicons-halflings-regular').last %>#glyphicons_halflingsregular') format('svg');
9
+ }
10
+
11
+ .glyphicon {
12
+ font-family: 'Glyphicons Halflings Contour';
13
+ }
@@ -1,6 +1,7 @@
1
1
  require 'contour/fixes/devise.rb'
2
2
  require 'contour/fixes/omniauth.rb'
3
3
  require 'contour/fixes/rack.rb'
4
+ require 'contour/fixes/sass-rails.rb'
4
5
 
5
6
  module Contour
6
7
  module Fixes
@@ -0,0 +1,8 @@
1
+ require 'sass/rails'
2
+
3
+ class Sass::Rails::Importer
4
+ def sass_file? filename
5
+ filename = filename.to_s
6
+ SASS_EXTENSIONS.keys.any?{|ext| filename.match /#{ext}$/}
7
+ end
8
+ end
@@ -3,7 +3,7 @@ module Contour
3
3
  MAJOR = 2
4
4
  MINOR = 6
5
5
  TINY = 0
6
- BUILD = "beta2" # nil, "pre", "rc", "rc2"
6
+ BUILD = "beta3" # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
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.beta2
4
+ version: 2.6.0.beta3
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-08-19 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -213,6 +213,7 @@ files:
213
213
  - app/assets/stylesheets/contour.scss
214
214
  - app/assets/stylesheets/contour/about.scss
215
215
  - app/assets/stylesheets/datepicker.scss
216
+ - app/assets/stylesheets/glyphicon-overrides.scss.erb
216
217
  - app/assets/stylesheets/jquery-ui-1.10.0.custom.scss
217
218
  - app/assets/stylesheets/typeahead.js-bootstrap.scss
218
219
  - app/controllers/contour/authentications_controller.rb
@@ -274,6 +275,7 @@ files:
274
275
  - lib/contour/fixes/devise.rb
275
276
  - lib/contour/fixes/omniauth.rb
276
277
  - lib/contour/fixes/rack.rb
278
+ - lib/contour/fixes/sass-rails.rb
277
279
  - lib/contour/version.rb
278
280
  - lib/generators/contour/install/install_generator.rb
279
281
  - lib/generators/contour/install/templates/README