sb_internal_style 0.0.1 → 0.0.2

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: c0c6a2a9f160761f9453fd104113cab94ae2a2ac
4
- data.tar.gz: 3fad570e8a21efa7eda9ad898b412e3d03d2b0cd
3
+ metadata.gz: 78a1928f0b160f7f9ead94031d9ea137ddfad4f8
4
+ data.tar.gz: 6683ff81b3d901380554bab4c70cb93cfb79a229
5
5
  SHA512:
6
- metadata.gz: a2efca513a13391e5eac9c6395bf1a9024975f8b576952457539110837acc772b3cc061f8ce296d167fc93858f60fa699587feed819a91abc87118628f897c5b
7
- data.tar.gz: 1e6b989f89d7c7793085b189f444af7bbaa62a27aee192c2eef3cecea7f7023b667d71bdb5445be9c8ecfd2571edf47e639bd11ded5f8a36baed0e877c5b75fc
6
+ metadata.gz: 6d754d1d4536a6c9d7d49099663dc69486ae18e16b95f14fba093687a4e14e258223e16b73d78c1072cb4d9de1311962d184fbe9d0c924c6600545f5a1235067
7
+ data.tar.gz: 782e50c5eadac3f9438c12cd3c84181692da16137aa77c7e3099fe5575b582fb8e072513f40f9fac01367dcf5f9fa0ab01fed2f13222ac1645dbda98eb0427fb
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # SbInternalStyle
1
+ # Singlebrook Internal Styles
2
2
 
3
- TODO: Write a gem description
3
+ Provides styles and fonts for internal Singlebrook apps.
4
4
 
5
5
  ## Installation
6
6
 
@@ -12,18 +12,12 @@ And then execute:
12
12
 
13
13
  $ bundle
14
14
 
15
- Or install it yourself as:
15
+ Add to your main SCSS file:
16
16
 
17
- $ gem install sb_internal_style
17
+ @import 'sb_internal_style/main';
18
18
 
19
- ## Usage
19
+ Grab an application layout from the intranet and modify it as you like.
20
20
 
21
- TODO: Write usage instructions here
21
+ ## TODO
22
22
 
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
23
+ Provide a style guide that tells devs what classes are available.
@@ -10,11 +10,14 @@
10
10
 
11
11
  @font-face {
12
12
  font-family: 'singlebrookRegular';
13
- src: font-url('singlebrookrounded-webfont.eot');
14
- src: font-url('singlebrookrounded-webfont.eot?#iefix') format('embedded-opentype'),
15
- font-url('singlebrookrounded-webfont.woff') format('woff'),
16
- font-url('singlebrookrounded-webfont.ttf') format('truetype'),
17
- font-url('singlebrookrounded-webfont.svg#singlebrookRegular') format('svg');
13
+ // Using the second 'font' argument is deprecated, but we have to leave it here
14
+ // for compatibility with sass-rails 3.x. Once the intranet is on Rails 4 we can
15
+ // remove it.
16
+ src: asset-url('singlebrookrounded-webfont.eot', 'font');
17
+ src: asset-url('singlebrookrounded-webfont.eot?#iefix', 'font') format('embedded-opentype'),
18
+ asset-url('singlebrookrounded-webfont.woff', 'font') format('woff'),
19
+ asset-url('singlebrookrounded-webfont.ttf', 'font') format('truetype'),
20
+ asset-url('singlebrookrounded-webfont.svg#singlebrookRegular', 'font') format('svg');
18
21
  font-weight: normal;
19
22
  font-style: normal;
20
23
  }
@@ -1,3 +1,3 @@
1
1
  module SbInternalStyle
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake"
23
23
 
24
24
  spec.add_dependency "font_assets"
25
+ spec.add_dependency "railties"
25
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sb_internal_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leon Miller-Out
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: railties
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: Styling common to various SB internal apps
56
70
  email:
57
71
  - leon@singlebrook.com