netguru_theme 0.2.1 → 0.2.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
- SHA1:
3
- metadata.gz: 6136635a04cf95adcad06ddb1092eb6de9160f0c
4
- data.tar.gz: 32f707445df37e65185daa75f3843f7018a5b5ba
2
+ SHA256:
3
+ metadata.gz: 615a0cda500e3399d185a1d770c12afa548bc86f545f65e210c784dfea8f2378
4
+ data.tar.gz: e178d498d912621d4181329eb93c0e21818ec3d8a1e2235b47d8a7fb6ea9e4ef
5
5
  SHA512:
6
- metadata.gz: 05d180ec62c975c39dc7c9b8b4d4e5838bfaeef60acd4b99f9d0b9c3740c7d831b206305945dfa602360ef95eacc54aa83a054fcf68a9fd4e5df4acfbe723139
7
- data.tar.gz: bec3bce53ae0d7d71fd0792d1116dafa3fefadd008a0edf632ef7e7cbd9bfce46ba5d66f71fd20d70e3ab0ae1f99147c2931cc343e25bfa47f74ca550334b7e6
6
+ metadata.gz: 9517d253deadfae003b46b99c91a002b2a87258d11b7d2e79d51fcaf659d4c5fdfda428062fd3c2b4b6ca83a395329a6f7e85be6d429758491423ec407ad8c5a
7
+ data.tar.gz: 24f49c7e2c11ebe65ce9822168ba8bd835c5e1cf90dd04c2e633ec9ec4f60ba46f18b647ec7785cc4717d15fec0d8e18c0ed5b5991c9e1f1db9fc0c0441ee849
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # netguru_theme changelog
2
2
 
3
+ #### 0.2.2
4
+ + Bump bootstrap-sass 3.3.0 -> 3.4.1
5
+
6
+ #### 0.2.1
7
+ + Thor added to dependencies
8
+
9
+ #### 0.2.0
10
+ + command line tool for manual installation
11
+
3
12
  #### 0.1.0
4
13
  + moved **people** app components to [apps/people](https://github.com/netguru/netguru_theme/tree/master/app/assets/stylesheets/netguru-theme/apps/people) directory. To import all people components add <code>@import 'netguru-theme/apps/people'</code> to your <code>application.scss</code>
5
14
  + mixin <code>quantity</code> is marked as deprecated - use mixin <code>sizing</code>
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
  [![Dependency Status](https://gemnasium.com/netguru/netguru_theme.svg)](https://gemnasium.com/netguru/netguru_theme)
3
3
  [![Gem Version](https://badge.fury.io/rb/netguru_theme.svg)](http://badge.fury.io/rb/netguru_theme)
4
4
 
5
- Bootstrap theme used across Netguru internal apps.
5
+ Bootstrap theme used across Netguru internal apps. Netguru_theme is build on top of [Twitter Bootstrap](http://getbootstrap.com/) ([bootstrap-sass](https://github.com/twbs/bootstrap-sass) gem) and includes [Bourbon](https://github.com/thoughtbot/bourbon).
6
6
 
7
- ## Installation
7
+ ## Installation for Ruby on Rails
8
8
 
9
9
  Add this line to your application's Gemfile:
10
10
 
@@ -14,13 +14,7 @@ And then execute:
14
14
 
15
15
  $ bundle
16
16
 
17
- Or install it yourself as:
18
-
19
- $ gem install netguru_theme
20
-
21
- ## Usage
22
-
23
- Import stylesheets:
17
+ Then import stylesheets:
24
18
  ```scss
25
19
  @import 'netguru-theme';
26
20
  ```
@@ -29,7 +23,26 @@ and import javascripts:
29
23
  //= require netguru_theme
30
24
  ```
31
25
 
32
- netguru_theme is build on top of [Twitter Bootstrap](http://getbootstrap.com/) ([bootstrap-sass](https://github.com/twbs/bootstrap-sass) gem) and includes [Bourbon](https://github.com/thoughtbot/bourbon).
26
+ ## Install manually
27
+
28
+ Install gem:
29
+ ```
30
+ $ gem install netguru_theme
31
+ ```
32
+
33
+ Then run
34
+ ```
35
+ netguru_theme install
36
+ ```
37
+
38
+ **Tip:** you can choose output style by passing <code>--style</code> option:
39
+ ```
40
+ netguru_theme install --style nested
41
+ ```
42
+ Allowed values are: <code>compressed</code> (default), <code>nested</code>, <code>expanded</code> or <code>compact</code>.
43
+
44
+ **Known issues:** manuall install script does not include js, fonts and images - you'll need add them manually.
45
+
33
46
  ## Contributing
34
47
 
35
48
  1. Fork it ( https://github.com/netguru/netguru_theme/fork )
@@ -1,3 +1,3 @@
1
1
  module NetguruTheme
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'
3
3
  end
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_dependency('sass', '~> 3.2')
22
22
  spec.add_dependency('bourbon', '~> 3.2.3')
23
- spec.add_dependency('bootstrap-sass', '~> 3.3.0')
23
+ spec.add_dependency('bootstrap-sass', '~> 3.4.1')
24
24
  spec.add_dependency('thor')
25
25
 
26
26
  spec.add_development_dependency "bundler", "~> 1.6"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netguru_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Czajka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-11 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 3.3.0
47
+ version: 3.4.1
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: 3.3.0
54
+ version: 3.4.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: thor
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -158,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubyforge_project:
162
- rubygems_version: 2.2.2
161
+ rubygems_version: 3.0.3
163
162
  signing_key:
164
163
  specification_version: 4
165
164
  summary: Netguru Bootstrap Theme