bourbon 1.3.2 → 1.3.3

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.
@@ -1,17 +1,17 @@
1
1
  @disable-bundler
2
- Feature: Generate bourbon files
2
+ Feature: Install bourbon files
3
3
 
4
4
  Scenario: Bourbon generates a new bourbon installation
5
- When I generate bourbon files
5
+ When I install bourbon files
6
6
  Then the sass directories should have been generated
7
7
  And the following directories should exist:
8
8
  | bourbon |
9
9
  | bourbon/lib |
10
10
  And the master bourbon partial should have been generated
11
11
  And the lib files should have been generated
12
- And the output should contain "Bourbon files generated to bourbon/"
12
+ And the output should contain "Bourbon files installed to bourbon/"
13
13
 
14
14
  Scenario: Generating does not overwrite an existing bourbon directory
15
- Given bourbon is already generated
16
- When I generate bourbon files
17
- Then the output should contain "Bourbon files already generated, doing nothing."
15
+ Given bourbon is already installed
16
+ When I install bourbon files
17
+ Then the output should contain "Bourbon files already installed, doing nothing."
@@ -1,11 +1,11 @@
1
- Given /^bourbon is already generated$/ do
1
+ Given /^bourbon is already installed$/ do
2
2
  set_up_bourbon_directory
3
- generate_bourbon
3
+ install_bourbon
4
4
  end
5
5
 
6
- When /^I generate bourbon files$/ do
6
+ When /^I install bourbon files$/ do
7
7
  set_up_bourbon_directory
8
- generate_bourbon
8
+ install_bourbon
9
9
  end
10
10
 
11
11
  When /^I update bourbon files$/ do
@@ -4,8 +4,8 @@ module BourbonSupport
4
4
  run_simple("bundle install")
5
5
  end
6
6
 
7
- def generate_bourbon
8
- run_simple("bundle exec bourbon generate")
7
+ def install_bourbon
8
+ run_simple("bundle exec bourbon install")
9
9
  end
10
10
 
11
11
  def update_bourbon
@@ -2,7 +2,7 @@
2
2
  Feature: Update bourbon files
3
3
 
4
4
  Scenario: Updating updates an existing bourbon install
5
- When I generate bourbon files
5
+ When I install bourbon files
6
6
  And I write to "bourbon/_bourbon.scss" with:
7
7
  """
8
8
  foobar
@@ -7,8 +7,8 @@ module Bourbon
7
7
  end
8
8
 
9
9
  def run
10
- if @subcommand == "generate"
11
- generate
10
+ if @subcommand == "install"
11
+ install
12
12
  elsif @subcommand == "update"
13
13
  update
14
14
  end
@@ -17,19 +17,19 @@ module Bourbon
17
17
  def update
18
18
  if bourbon_files_already_exist?
19
19
  remove_bourbon_directory
20
- generate_files
20
+ install_files
21
21
  puts "Bourbon files updated."
22
22
  else
23
23
  puts "No existing bourbon installation. Doing nothing."
24
24
  end
25
25
  end
26
26
 
27
- def generate
27
+ def install
28
28
  if bourbon_files_already_exist?
29
- puts "Bourbon files already generated, doing nothing."
29
+ puts "Bourbon files already installed, doing nothing."
30
30
  else
31
- generate_files
32
- puts "Bourbon files generated to bourbon/"
31
+ install_files
32
+ puts "Bourbon files installed to bourbon/"
33
33
  end
34
34
  end
35
35
 
@@ -39,7 +39,7 @@ module Bourbon
39
39
  Dir.exist?("bourbon")
40
40
  end
41
41
 
42
- def generate_files
42
+ def install_files
43
43
  make_lib_directory
44
44
  copy_in_sass_extensions
45
45
  copy_in_scss_files
@@ -1,3 +1,3 @@
1
1
  module Bourbon
2
- VERSION = "1.3.2"
2
+ VERSION = "1.3.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -23,7 +23,7 @@ date: 2012-01-22 00:00:00.000000000 Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: sass
26
- requirement: &70209714092360 !ruby/object:Gem::Requirement
26
+ requirement: &70264008406980 !ruby/object:Gem::Requirement
27
27
  none: false
28
28
  requirements:
29
29
  - - ! '>='
@@ -31,10 +31,10 @@ dependencies:
31
31
  version: '3.1'
32
32
  type: :runtime
33
33
  prerelease: false
34
- version_requirements: *70209714092360
34
+ version_requirements: *70264008406980
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: aruba
37
- requirement: &70209714091860 !ruby/object:Gem::Requirement
37
+ requirement: &70264008406480 !ruby/object:Gem::Requirement
38
38
  none: false
39
39
  requirements:
40
40
  - - ~>
@@ -42,7 +42,7 @@ dependencies:
42
42
  version: '0.4'
43
43
  type: :development
44
44
  prerelease: false
45
- version_requirements: *70209714091860
45
+ version_requirements: *70264008406480
46
46
  description: ! 'The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive
47
47
  framework of
48
48
 
@@ -98,7 +98,7 @@ files:
98
98
  - app/assets/stylesheets/functions/_tint-shade.scss
99
99
  - bin/bourbon
100
100
  - bourbon.gemspec
101
- - features/generate.feature
101
+ - features/install.feature
102
102
  - features/step_definitions/bourbon_steps.rb
103
103
  - features/support/bourbon_support.rb
104
104
  - features/support/env.rb
@@ -137,7 +137,7 @@ signing_key:
137
137
  specification_version: 3
138
138
  summary: Bourbon Sass Mixins using SCSS syntax.
139
139
  test_files:
140
- - features/generate.feature
140
+ - features/install.feature
141
141
  - features/step_definitions/bourbon_steps.rb
142
142
  - features/support/bourbon_support.rb
143
143
  - features/support/env.rb