contour 3.0.0 → 3.0.1.rc

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aef4b49adc3964edfbabf9a4b226c999d9b8c54e
4
- data.tar.gz: 9e87e357fe4145cff184e52f41905e0646f12360
3
+ metadata.gz: 6a55456ed23da0fee3432efda4c97296f5b72de1
4
+ data.tar.gz: 879c9bf2511cb90c43e49f8425fb63f6e2062359
5
5
  SHA512:
6
- metadata.gz: 7f58b0190d30199cb07d873426620d75a788c448c97823aaeb1e41b570f094214858d8abd09bc1b58bb1a9cc44298ca263f948a690372e46c9be9e270d0357ec
7
- data.tar.gz: d207825ede9b77cf0bd777dc887d6a387d5cd3b0579961f57cb2feb8e0dfe793c48e386754a3428898754d85eeaff12cbfac54e90db8400d7a8d51f1906d1760
6
+ metadata.gz: 2feb1f12944073549e03b6808fda62ab28382a05054cc1803d23e04d9dc6619b6c3d509a04b52d1966aa350f99a4ba495f4ac79af1da1409316815978035e805
7
+ data.tar.gz: 934dfaf0f5e3715cc4f8ad21fbfddefbfce45b402d745f206a93bb95fc7252f4122469b24e3d6399a4ee7093b8990c3bde42d3c6690670b405d199e242e81dad
@@ -1,3 +1,8 @@
1
+ ## 3.0.1
2
+
3
+ ### Bug Fix
4
+ - Fixed OpenSans font not loading in Internet Explorere by adding `woff` format
5
+
1
6
  ## 3.0.0 (June 26, 2015)
2
7
 
3
8
  ### Breaking Changes
@@ -2,19 +2,22 @@
2
2
  font-family: 'Open Sans';
3
3
  font-style: normal;
4
4
  font-weight: 300;
5
- src: asset-url('opensans/OpenSans-Light.ttf') format('truetype');
5
+ src: asset-url('opensans/OpenSans-Light.woff') format('woff'),
6
+ asset-url('opensans/OpenSans-Light.ttf') format('truetype');
6
7
  }
7
8
 
8
9
  @font-face {
9
10
  font-family: 'Open Sans';
10
11
  font-style: normal;
11
12
  font-weight: 400;
12
- src: asset-url('opensans/OpenSans-Regular.ttf') format('truetype');
13
+ src: asset-url('opensans/OpenSans-Regular.woff') format('woff'),
14
+ asset-url('opensans/OpenSans-Regular.ttf') format('truetype');
13
15
  }
14
16
 
15
17
  @font-face {
16
18
  font-family: 'Open Sans';
17
19
  font-style: normal;
18
20
  font-weight: 700;
19
- src: asset-url('opensans/OpenSans-Bold.ttf') format('truetype');
21
+ src: asset-url('opensans/OpenSans-Bold.woff') format('woff'),
22
+ asset-url('opensans/OpenSans-Bold.ttf') format('truetype');
20
23
  }
@@ -2,8 +2,8 @@ module Contour
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 0
6
- BUILD = nil # nil, "pre", "rc", "rc2"
5
+ TINY = 1
6
+ BUILD = "rc" # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
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: 3.0.0
4
+ version: 3.0.1.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: 2015-06-26 00:00:00.000000000 Z
11
+ date: 2015-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -148,8 +148,11 @@ files:
148
148
  - Rakefile
149
149
  - app/assets/fonts/opensans/LICENSE.txt
150
150
  - app/assets/fonts/opensans/OpenSans-Bold.ttf
151
+ - app/assets/fonts/opensans/OpenSans-Bold.woff
151
152
  - app/assets/fonts/opensans/OpenSans-Light.ttf
153
+ - app/assets/fonts/opensans/OpenSans-Light.woff
152
154
  - app/assets/fonts/opensans/OpenSans-Regular.ttf
155
+ - app/assets/fonts/opensans/OpenSans-Regular.woff
153
156
  - app/assets/javascripts/contour.js
154
157
  - app/assets/javascripts/contour/global.coffee
155
158
  - app/assets/javascripts/external/bootstrap-datepicker.js
@@ -289,9 +292,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
289
292
  version: '0'
290
293
  required_rubygems_version: !ruby/object:Gem::Requirement
291
294
  requirements:
292
- - - ">="
295
+ - - ">"
293
296
  - !ruby/object:Gem::Version
294
- version: '0'
297
+ version: 1.3.1
295
298
  requirements: []
296
299
  rubyforge_project:
297
300
  rubygems_version: 2.4.6