neat 1.7.4 → 1.8.0

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: 8eb2762209caf54b43f3de40b58e45e74ab60745
4
- data.tar.gz: 595b9703a3de3a9e00ed77b01c453c8b959f4aba
3
+ metadata.gz: f802639f3eb89eafca425f71ebbfbdb3ed8b1aff
4
+ data.tar.gz: 59b52dc35945401d1674dbd35c073cc220aebf61
5
5
  SHA512:
6
- metadata.gz: fcb8d041bc31c465512fc0010af419c261d82f1afb46c2d27f43241a2f64da93968168565c220f8e9dad43bc3bd0bb72af2014a0c75b5b24e8de2fdd29bdbf58
7
- data.tar.gz: 5bcce3921f4a9664d5fec025755f31c0e18ea4ebf59743de499879ad5a56f48957bd0b311fed63bb7f9a4609c878d78b4490b933d05b555c2bb841e3aacffeaf
6
+ metadata.gz: 0ae72e905832fe0dcf0cada066bc786c92b320ae1be4197d8349da3002e7d451f1fda0a627154a2a92e2c24364be45662e1e2dc29d939045465b424578257252
7
+ data.tar.gz: 7e99d8de395b034489334a65a63fce9bd041823f6c617f1eeaf0205a54837444a7e8da99b971db60a323612a68cecf454973ccd67a231228628dcd1c64c88602
@@ -1,5 +1,4 @@
1
- var bourbon = require("bourbon").includePaths,
2
- autoprefix = require("gulp-autoprefixer"),
1
+ var autoprefix = require("gulp-autoprefixer"),
3
2
  connect = require("gulp-connect"),
4
3
  gulp = require("gulp"),
5
4
  sass = require("gulp-sass");
@@ -13,7 +12,7 @@ var paths = {
13
12
  gulp.task("sass", function () {
14
13
  return gulp.src(paths.scss)
15
14
  .pipe(sass({
16
- includePaths: ["styles"].concat(bourbon)
15
+ sourcemaps: true
17
16
  }))
18
17
  .pipe(autoprefix("last 2 versions"))
19
18
  .pipe(gulp.dest("./contrib"))
data/README.md CHANGED
@@ -4,9 +4,9 @@
4
4
  [![Gitter](http://img.shields.io/badge/gitter-neat-ae3dd2.svg?style=flat)](https://gitter.im/thoughtbot/neat)
5
5
  [![Stack Overflow](http://img.shields.io/badge/stack%20overflow-neat-ae3dd2.svg?style=flat)](http://stackoverflow.com/questions/tagged/neat)
6
6
 
7
- ## A lightweight, semantic grid framework built with Bourbon
7
+ ## A lightweight, semantic grid framework
8
8
 
9
- Neat is a fluid grid framework built with [Bourbon](https://github.com/thoughtbot/bourbon) with the aim of being easy enough to use out of the box and flexible enough to customize down the road.
9
+ Neat is a fluid grid framework with the aim of being easy enough to use out of the box and flexible enough to customize down the road.
10
10
 
11
11
  - **[Demo](http://neat.bourbon.io)**
12
12
  - **[Documentation](http://thoughtbot.github.io/neat-docs/latest)**
@@ -19,7 +19,6 @@ for updates.
19
19
  ## Requirements
20
20
 
21
21
  - [Sass](https://github.com/sass/sass) 3.3+
22
- - [Bourbon](https://github.com/thoughtbot/bourbon) 4.0+
23
22
  - :warning: If you need **Sass 3.2 support**, you should [use Neat 1.5.1](#installing-older-versions-of-neat)
24
23
 
25
24
  ## Installation
@@ -39,23 +38,16 @@ For command line help, visit our wiki page on Neat’s [command line interface](
39
38
  ```bash
40
39
  gem install sass # or gem update sass
41
40
  ```
42
- ```bash
43
- gem install bourbon # or gem update bourbon
44
- ```
45
41
 
46
42
  3. Install the Neat library into the current directory:
47
43
 
48
- ```bash
49
- bourbon install # if not already installed
50
- ```
51
44
  ```bash
52
45
  neat install
53
46
  ```
54
47
 
55
- 4. Import Neat in your stylesheet, after Bourbon:
48
+ 4. Import Neat in your stylesheet:
56
49
 
57
50
  ```scss
58
- @import "bourbon/bourbon";
59
51
  @import "neat/neat";
60
52
  ```
61
53
 
@@ -81,10 +73,9 @@ For command line help, visit our wiki page on Neat’s [command line interface](
81
73
  bundle update sass
82
74
  ```
83
75
 
84
- 3. Import Neat in your `application.scss`, after Bourbon:
76
+ 3. Import Neat in your `application.scss`:
85
77
 
86
78
  ```scss
87
- @import "bourbon";
88
79
  @import "neat";
89
80
  ```
90
81
 
@@ -98,12 +89,11 @@ For command line help, visit our wiki page on Neat’s [command line interface](
98
89
  npm install --save bourbon-neat
99
90
  ```
100
91
 
101
- 1. If you’re using [Eyeglass](http://eyeglass.rocks), skip to Step 3. Otherwise, you’ll need to add Bourbon and Neat to your node-sass `includePaths` option. `require("bourbon-neat").includePaths` is an array of directories that you should pass to node-sass. How you do this depends on how node-sass is integrated into your project. You will also need to ensure that Bourbon is in the `includePaths` passed to node-sass.
92
+ 1. If you’re using [Eyeglass](http://eyeglass.rocks), skip to Step 3. Otherwise, you’ll need to add Neat to your node-sass `includePaths` option. `require("bourbon-neat").includePaths` is an array of directories that you should pass to node-sass. How you do this depends on how node-sass is integrated into your project.
102
93
 
103
- 1. Import Neat into your Sass files, after Bourbon:
94
+ 1. Import Neat into your Sass files:
104
95
 
105
96
  ```scss
106
- @import "bourbon";
107
97
  @import "neat";
108
98
  ```
109
99
 
@@ -128,7 +118,6 @@ For command line help, visit our wiki page on Neat’s [command line interface](
128
118
  First off, if you are planning to override the default grid settings (12 columns), it is recommended to create a `_grid-settings.scss` file for that purpose. Make sure to import it right *before* importing Neat:
129
119
 
130
120
  ```scss
131
- @import "bourbon/bourbon"; // or "bourbon" when in Rails
132
121
  @import "grid-settings";
133
122
  @import "neat/neat"; // or "neat" when in Rails
134
123
  ```
data/Rakefile CHANGED
@@ -8,15 +8,11 @@ RSpec::Core::RakeTask.new(:spec)
8
8
  task :default => :spec
9
9
 
10
10
  task :test do
11
- puts "Creating a Bourbon directory..."
12
- `bourbon install --path test`
13
11
  puts "Generating CSS..."
14
12
  `sass -I . --watch test:css/ --style expanded`
15
13
  end
16
14
 
17
15
  task :clean do
18
- puts "Deleting Bourbon directory..."
19
- `rm -rf test/bourbon`
20
16
  puts "Deleting generated CSS..."
21
17
  `rm -rf css/`
22
18
  end
@@ -1,3 +1,6 @@
1
+ // Mixins
2
+ @import "mixins/clearfix";
3
+
1
4
  // Functions
2
5
  @import "functions/private";
3
6
  @import "functions/new-breakpoint";
@@ -1,4 +1,4 @@
1
- // Neat 1.7.4
1
+ // Neat 1.8.0
2
2
  // http://neat.bourbon.io
3
3
  // Copyright 2012-2015 thoughtbot, inc.
4
4
  // MIT License
@@ -13,19 +13,15 @@
13
13
  ///
14
14
  /// @example css - CSS Output
15
15
  /// .element {
16
- /// *zoom: 1;
17
16
  /// max-width: 100%;
18
17
  /// margin-left: auto;
19
18
  /// margin-right: auto;
20
19
  /// }
21
20
  ///
22
- /// .element:before, .element:after {
23
- /// content: " ";
24
- /// display: table;
25
- /// }
26
- ///
27
- /// .element:after {
21
+ /// .element::after {
28
22
  /// clear: both;
23
+ /// content: "";
24
+ /// display: table;
29
25
  /// }
30
26
 
31
27
  @mixin outer-container($local-max-width: $max-width) {
@@ -0,0 +1,25 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Provides an easy way to include a clearfix for containing floats.
4
+ ///
5
+ /// @link http://goo.gl/yP5hiZ
6
+ ///
7
+ /// @example scss
8
+ /// .element {
9
+ /// @include clearfix;
10
+ /// }
11
+ ///
12
+ /// @example css
13
+ /// .element::after {
14
+ /// clear: both;
15
+ /// content: "";
16
+ /// display: block;
17
+ /// }
18
+
19
+ @mixin clearfix {
20
+ &::after {
21
+ clear: both;
22
+ content: "";
23
+ display: block;
24
+ }
25
+ }
@@ -1,16 +1,16 @@
1
1
  @charset "UTF-8";
2
2
 
3
- /// Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about `modular-scale()` see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with a `!global` flag.
3
+ /// Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. Set with a `!global` flag.
4
4
  ///
5
5
  /// @type Number (Unit)
6
6
 
7
- $column: modular-scale(3, 1em, $golden) !default;
7
+ $column: 4.2358em !default;
8
8
 
9
- /// Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about `modular-scale()` see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with the `!global` flag.
9
+ /// Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. Set with the `!global` flag.
10
10
  ///
11
11
  /// @type Number (Unit)
12
12
 
13
- $gutter: modular-scale(1, 1em, $golden) !default;
13
+ $gutter: 1.618em !default;
14
14
 
15
15
  /// Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag.
16
16
  ///
data/bin/neat CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "neat"
3
+ require File.dirname(__FILE__) + "/../lib/neat.rb"
4
4
 
5
- Neat::Generator.new(ARGV).run
5
+ Neat::Generator.start
data/bower.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "neat",
3
- "description": "A lightweight, semantic grid framework built with Bourbon",
4
- "version": "1.7.4",
3
+ "description": "A lightweight, semantic grid framework",
4
+ "version": "1.8.0",
5
5
  "main": "app/assets/stylesheets/_neat.scss",
6
6
  "license": "MIT",
7
7
  "ignore": [
@@ -19,7 +19,6 @@
19
19
  "test"
20
20
  ],
21
21
  "keywords": [
22
- "bourbon",
23
22
  "columns",
24
23
  "grid",
25
24
  "layout",
@@ -38,8 +37,5 @@
38
37
  "repository": {
39
38
  "type": "git",
40
39
  "url": "https://github.com/thoughtbot/neat.git"
41
- },
42
- "dependencies": {
43
- "bourbon": ">=4.0"
44
40
  }
45
41
  }
@@ -1,4 +1,3 @@
1
- @import "bourbon";
2
1
  @import "../app/assets/stylesheets/neat";
3
2
 
4
3
  // Grid Settings
@@ -35,7 +34,7 @@ $darkerblue: #072f44;
35
34
 
36
35
  body {
37
36
  color: $darkerblue;
38
- font-family: $helvetica;
37
+ font-family: sans-serif;
39
38
  line-height: $base-line-height;
40
39
  margin: 0 0 (1.5rem * 2);
41
40
  text-align: center;
@@ -62,17 +61,17 @@ code {
62
61
  // ============================================
63
62
 
64
63
  .container {
65
- @include margin(null auto);
66
- @include padding(null $gutter);
64
+ margin: 0 auto;
67
65
  max-width: 500px;
66
+ padding: 0 $gutter;
68
67
  position: relative;
69
68
  }
70
69
 
71
70
  .welcome-message {
72
71
  @include clearfix();
73
- @include padding($base-spacing null);
74
72
  background-color: $blue;
75
73
  margin-bottom: 1.5rem;
74
+ padding: $base-spacing 0;
76
75
  text-align: center;
77
76
  }
78
77
 
@@ -1,5 +1,4 @@
1
1
  require "sass"
2
- require "bourbon"
3
2
  require "neat/generator"
4
3
 
5
4
  module Neat
@@ -1,21 +1,22 @@
1
+ require "neat/version"
1
2
  require "fileutils"
3
+ require "thor"
2
4
 
3
5
  module Neat
4
- class Generator
5
- def initialize(arguments)
6
- @subcommand = arguments.first
7
- end
6
+ class Generator < Thor
7
+ map ["-v", "--version"] => :version
8
8
 
9
- def run
10
- if @subcommand == "install"
11
- install
12
- elsif @subcommand == "update"
13
- update
14
- elsif @subcommand == "remove"
15
- remove
9
+ desc "install", "Install Neat into your project"
10
+ def install
11
+ if neat_files_already_exist?
12
+ puts "Neat files already installed, doing nothing."
13
+ else
14
+ install_files
15
+ puts "Neat files installed to neat/"
16
16
  end
17
17
  end
18
18
 
19
+ desc "update", "Update Neat"
19
20
  def update
20
21
  if neat_files_already_exist?
21
22
  remove_neat_directory
@@ -26,15 +27,7 @@ module Neat
26
27
  end
27
28
  end
28
29
 
29
- def install
30
- if neat_files_already_exist?
31
- puts "Neat files already installed, doing nothing."
32
- else
33
- install_files
34
- puts "Neat files installed to neat/"
35
- end
36
- end
37
-
30
+ desc "update", "Remove Neat"
38
31
  def remove
39
32
  if neat_files_already_exist?
40
33
  remove_neat_directory
@@ -44,6 +37,11 @@ module Neat
44
37
  end
45
38
  end
46
39
 
40
+ desc "version", "Show Neat version"
41
+ def version
42
+ say "Neat #{Neat::VERSION}"
43
+ end
44
+
47
45
  private
48
46
 
49
47
  def neat_files_already_exist?
@@ -1,3 +1,3 @@
1
1
  module Neat
2
- VERSION = "1.7.4"
2
+ VERSION = "1.8.0"
3
3
  end
@@ -1,20 +1,18 @@
1
1
  require "fileutils"
2
2
  require "find"
3
3
 
4
- namespace :bourbon do
5
- namespace :neat do
6
- desc "Copy Neat's files to the Rails assets directory."
7
- task :install, [:sass_path] do |t, args|
8
- args.with_defaults(:sass_path => 'public/stylesheets/sass')
9
- source_root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
10
- FileUtils.mkdir_p("#{Rails.root}/#{args.sass_path}/neat")
11
- FileUtils.cp_r("#{source_root}/app/assets/stylesheets/.", "#{Rails.root}/#{args.sass_path}/neat", { :preserve => true })
4
+ namespace :neat do
5
+ desc "Copy Neat's files to the Rails assets directory."
6
+ task :install, [:sass_path] do |t, args|
7
+ args.with_defaults(:sass_path => 'public/stylesheets/sass')
8
+ source_root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
9
+ FileUtils.mkdir_p("#{Rails.root}/#{args.sass_path}/neat")
10
+ FileUtils.cp_r("#{source_root}/app/assets/stylesheets/.", "#{Rails.root}/#{args.sass_path}/neat", { :preserve => true })
12
11
 
13
- Find.find("#{Rails.root}/#{args.sass_path}/neat") do |path|
14
- if path.end_with?(".css.scss")
15
- path_without_css_extension = path.gsub(/\.css\.scss$/, ".scss")
16
- FileUtils.mv(path, path_without_css_extension)
17
- end
12
+ Find.find("#{Rails.root}/#{args.sass_path}/neat") do |path|
13
+ if path.end_with?(".css.scss")
14
+ path_without_css_extension = path.gsub(/\.css\.scss$/, ".scss")
15
+ FileUtils.mv(path, path_without_css_extension)
18
16
  end
19
17
  end
20
18
  end
@@ -9,11 +9,11 @@ Gem::Specification.new do |s|
9
9
  s.authors = ['Joel Oliveira', 'Kyle Fiedler', 'Reda Lemeden']
10
10
  s.email = 'design+bourbon@thoughtbot.com'
11
11
  s.homepage = 'http://neat.bourbon.io'
12
- s.summary = 'A lightweight, semantic grid framework built with Bourbon'
12
+ s.summary = 'A lightweight, semantic grid framework'
13
13
  s.license = 'MIT'
14
14
  s.description = <<-DESC
15
- Neat is a fluid grid framework built with Bourbon with the aim of being easy
16
- enough to use out of the box and flexible enough to customize down the road.
15
+ Neat is a fluid grid framework built with the aim of being easy enough to use
16
+ out of the box and flexible enough to customize down the road.
17
17
  DESC
18
18
 
19
19
  s.rubyforge_project = 'neat'
@@ -24,7 +24,7 @@ enough to use out of the box and flexible enough to customize down the road.
24
24
  s.require_paths = ['lib']
25
25
 
26
26
  s.add_dependency('sass', '>= 3.3')
27
- s.add_dependency('bourbon', '>= 4.0')
27
+ s.add_dependency("thor", "~> 0.19")
28
28
 
29
29
  s.add_development_dependency("scss_lint", "~> 0.43")
30
30
  s.add_development_dependency('aruba', '~> 0.5.0')
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "bourbon-neat",
3
- "version": "1.7.4",
4
- "description": "A lightweight, semantic grid framework built with Bourbon",
3
+ "version": "1.8.0",
4
+ "description": "A lightweight, semantic grid framework",
5
5
  "keywords": [
6
- "bourbon",
7
6
  "columns",
8
7
  "grid",
9
8
  "layout",
@@ -34,7 +33,6 @@
34
33
  "test": "echo \"No test specified\""
35
34
  },
36
35
  "dependencies": {
37
- "bourbon": "^4.2",
38
36
  "node-sass": "^3.4"
39
37
  },
40
38
  "devDependencies": {
data/sache.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "Neat",
3
- "description": "A lightweight, semantic grid framework built with Bourbon",
4
- "tags": ["bourbon", "columns", "grid", "layout", "media", "media-queries", "neat", "queries", "sass", "scss", "semantic"]
3
+ "description": "A lightweight, semantic grid framework",
4
+ "tags": ["columns", "grid", "layout", "media", "media-queries", "neat", "queries", "sass", "scss", "semantic"]
5
5
  }
@@ -7,19 +7,16 @@ require "css_parser"
7
7
  Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
8
8
 
9
9
  RSpec.configure do |config|
10
- config.include BourbonSupport
11
10
  config.include SassSupport
12
11
  config.include CssParser
13
12
  config.include ParserSupport
14
13
  config.include Aruba::Api
15
14
 
16
15
  config.before(:all) do
17
- install_bourbon_files
18
16
  generate_css
19
17
  end
20
18
 
21
19
  config.after(:all) do
22
- remove_bourbon_files
23
20
  clean_up
24
21
  end
25
22
  end
@@ -1,14 +1,16 @@
1
1
  RSpec::Matchers.define :have_rule do |expected|
2
- match do |actual|
3
- @rules = rules_from_selector(actual)
2
+ match do |selector|
3
+ @rules = rules_from_selector(selector)
4
4
  @rules.include? expected
5
5
  end
6
6
 
7
- failure_message do |actual|
7
+ failure_message do |selector|
8
8
  if @rules.empty?
9
- %{no CSS rules for selector #{actual} were found}
9
+ %{no CSS for selector #{selector} were found}
10
10
  else
11
- %{expected selector #{actual} to have CSS rule "#{expected}"}
11
+ rules = @rules.join("; ")
12
+ %{Expected selector #{selector} to have CSS rule "#{expected}".
13
+ Had "#{rules}".}
12
14
  end
13
15
  end
14
16
 
@@ -1,3 +1,2 @@
1
- @import "bourbon/bourbon";
2
1
  @import "../app/assets/stylesheets/neat";
3
2
  $disable-warnings: true !global;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.4
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Oliveira
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-03-04 00:00:00.000000000 Z
13
+ date: 2016-06-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -27,19 +27,19 @@ dependencies:
27
27
  - !ruby/object:Gem::Version
28
28
  version: '3.3'
29
29
  - !ruby/object:Gem::Dependency
30
- name: bourbon
30
+ name: thor
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ">="
33
+ - - "~>"
34
34
  - !ruby/object:Gem::Version
35
- version: '4.0'
35
+ version: '0.19'
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ">="
40
+ - - "~>"
41
41
  - !ruby/object:Gem::Version
42
- version: '4.0'
42
+ version: '0.19'
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: scss_lint
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -153,8 +153,8 @@ dependencies:
153
153
  - !ruby/object:Gem::Version
154
154
  version: '0'
155
155
  description: |
156
- Neat is a fluid grid framework built with Bourbon with the aim of being easy
157
- enough to use out of the box and flexible enough to customize down the road.
156
+ Neat is a fluid grid framework built with the aim of being easy enough to use
157
+ out of the box and flexible enough to customize down the road.
158
158
  email: design+bourbon@thoughtbot.com
159
159
  executables:
160
160
  - neat
@@ -191,6 +191,7 @@ files:
191
191
  - app/assets/stylesheets/grid/_span-columns.scss
192
192
  - app/assets/stylesheets/grid/_to-deprecate.scss
193
193
  - app/assets/stylesheets/grid/_visual-grid.scss
194
+ - app/assets/stylesheets/mixins/_clearfix.scss
194
195
  - app/assets/stylesheets/settings/_disable-warnings.scss
195
196
  - app/assets/stylesheets/settings/_grid.scss
196
197
  - app/assets/stylesheets/settings/_visual-grid.scss
@@ -220,7 +221,6 @@ files:
220
221
  - spec/neat/row_spec.rb
221
222
  - spec/neat/shift_spec.rb
222
223
  - spec/spec_helper.rb
223
- - spec/support/bourbon_support.rb
224
224
  - spec/support/matchers/be_contained_in.rb
225
225
  - spec/support/matchers/have_rule.rb
226
226
  - spec/support/matchers/have_value.rb
@@ -258,10 +258,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
258
258
  version: '0'
259
259
  requirements: []
260
260
  rubyforge_project: neat
261
- rubygems_version: 2.5.2
261
+ rubygems_version: 2.5.1
262
262
  signing_key:
263
263
  specification_version: 4
264
- summary: A lightweight, semantic grid framework built with Bourbon
264
+ summary: A lightweight, semantic grid framework
265
265
  test_files:
266
266
  - spec/neat/columns_spec.rb
267
267
  - spec/neat/container_spec.rb
@@ -275,7 +275,6 @@ test_files:
275
275
  - spec/neat/row_spec.rb
276
276
  - spec/neat/shift_spec.rb
277
277
  - spec/spec_helper.rb
278
- - spec/support/bourbon_support.rb
279
278
  - spec/support/matchers/be_contained_in.rb
280
279
  - spec/support/matchers/have_rule.rb
281
280
  - spec/support/matchers/have_value.rb
@@ -293,4 +292,3 @@ test_files:
293
292
  - test/row.scss
294
293
  - test/shift.scss
295
294
  - test/span-columns.scss
296
- has_rdoc:
@@ -1,9 +0,0 @@
1
- module BourbonSupport
2
- def install_bourbon_files
3
- `bundle exec bourbon install --path test`
4
- end
5
-
6
- def remove_bourbon_files
7
- FileUtils.rm_rf("test/bourbon")
8
- end
9
- end