build 1.0.4 → 1.0.5

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: a215de58cf34e6c526175d1a6a5a21f6c4b9cb2d
4
- data.tar.gz: 0641fffc01838f98c9a1ee3a747b3666a2ba46aa
3
+ metadata.gz: 594c057f0588489cb67ca50d71ad8556cabddca6
4
+ data.tar.gz: 19b5035819fa228d873faea710c1bc0f0e20d727
5
5
  SHA512:
6
- metadata.gz: 44b72b588f39f400bfcc5ba692313178a37be2ca0fb234ef2efdabe70d309186e40eebe897ba434aa9a24f2706c3e3c48bad574a8857ad2be1481031bd69500c
7
- data.tar.gz: bad741d31b4c9fba57b02e73693ec905745e1f10edb1de19495a86c0056e83fc596415ea23d153c9bf316ca0b30ce3358cc992854b23373d5a0d1bf497aaaa83
6
+ metadata.gz: 38423511ec2ed9fb855983bd283cd52f31c216d65ee5a73218d34fe807d355e6539d272c748852ce891bc59a16e2f64c20c50838728db966c65d21cef5c8b799
7
+ data.tar.gz: 50702dc29e0a38ec4d9a8c4abdf0f6e0ae1a06fdd6e70120111bb668ecf90b7efe9a7b1e3b7d3d288f8badcdb480e95562797c3ce125e17990f6052627f071a1
data/.travis.yml CHANGED
@@ -1,5 +1,14 @@
1
1
  language: ruby
2
+ sudo: false
2
3
  rvm:
3
- - "2.0"
4
- - "2.1"
4
+ - 2.0.0
5
+ - 2.1.8
6
+ - 2.2.4
7
+ - 2.3.0
8
+ - ruby-head
9
+ - rbx-2
5
10
  env: COVERAGE=true
11
+ matrix:
12
+ allow_failures:
13
+ - rvm: "rbx-2"
14
+
data/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  Build is a ruby gem providing systems for building task driven build systems similar to make.
4
4
 
5
- [![Build Status](https://secure.travis-ci.org/ioquatix/build.png)](http://travis-ci.org/ioquatix/build)
6
- [![Code Climate](https://codeclimate.com/github/ioquatix/build.png)](https://codeclimate.com/github/ioquatix/build)
5
+ [![Build Status](https://secure.travis-ci.org/ioquatix/build.svg)](http://travis-ci.org/ioquatix/build)
6
+ [![Code Climate](https://codeclimate.com/github/ioquatix/build.svg)](https://codeclimate.com/github/ioquatix/build)
7
7
  [![Coverage Status](https://coveralls.io/repos/ioquatix/build/badge.svg)](https://coveralls.io/r/ioquatix/build)
8
8
 
9
9
  ## Installation
data/build.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.required_ruby_version = '>= 2.0'
21
21
 
22
22
  spec.add_dependency "build-graph", "~> 1.0.3"
23
- spec.add_dependency "build-environment", "~> 1.1.2"
23
+ spec.add_dependency "build-environment", "~> 1.1.3"
24
24
  spec.add_dependency "build-makefile", "~> 1.0.0"
25
25
 
26
26
  spec.add_dependency "graphviz"
@@ -46,8 +46,8 @@ module Build
46
46
  attr :rule
47
47
  attr :callback
48
48
 
49
- def title
50
- @rule.title
49
+ def name
50
+ @rule.name
51
51
  end
52
52
 
53
53
  def apply!(scope)
data/lib/build/version.rb CHANGED
@@ -19,5 +19,5 @@
19
19
  # THE SOFTWARE.
20
20
 
21
21
  module Build
22
- VERSION = "1.0.4"
22
+ VERSION = "1.0.5"
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-09 00:00:00.000000000 Z
11
+ date: 2016-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: build-graph
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.1.2
33
+ version: 1.1.3
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.1.2
40
+ version: 1.1.3
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: build-makefile
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.4.6
158
+ rubygems_version: 2.2.2
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: Build is a framework for working with task based build systems.