fluent 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY.md +5 -0
- data/README.md +5 -6
- data/lib/fluent/data_builder.rb +1 -1
- data/lib/fluent/data_config.rb +1 -1
- data/lib/fluent/data_setter.rb +1 -1
- data/lib/fluent/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0244ad5c205af2844ca783ff52121602e291b1c5
|
4
|
+
data.tar.gz: e0749a92326575a29a735545a42cd2981d15c203
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 881b2fb1a326e174cf1bbc859e98c1a452c6d384b7a14d33e6df1df9023421588933b2df287aa81bc48e68e1023e17b939fb98738c0104ce6cec6a795b4d0676
|
7
|
+
data.tar.gz: 5ad0a85dd11f3b5a97855f3201968339489ae5a137e07c6fd3a76891e3d579df52444fc303d51e0d85ee1be48addc5ea29e2248a8941d885656c7cc33a62a15a
|
data/HISTORY.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Change Log and History
|
2
2
|
======================
|
3
3
|
|
4
|
+
Version 0.7.1 / 2013-12-09
|
5
|
+
--------------------------
|
6
|
+
|
7
|
+
This is a minor patch release to essentially change the default directories for the DataBuilder and DataConfig modules. These defaults were set to "common/data" but now the DataBuilder default directory is just "data" and the DataConfig default directory is "config". These defaults can still be overridden.
|
8
|
+
|
4
9
|
Version 0.7.0 / 2013-12-06
|
5
10
|
--------------------------
|
6
11
|
|
data/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
Fluent
|
2
2
|
======
|
3
3
|
|
4
|
-
[![Build Status](https://secure.travis-ci.org/jnyman/fluent.png)](http://travis-ci.org/jnyman/fluent)
|
5
|
-
[![Dependency Status](https://gemnasium.com/jnyman/fluent.png)](https://gemnasium.com/jnyman/fluent)
|
6
4
|
[![Gem Version](https://badge.fury.io/rb/fluent.png)](http://badge.fury.io/rb/fluent)
|
5
|
+
[![Build Status](https://secure.travis-ci.org/jnyman/fluent.png)](http://travis-ci.org/jnyman/fluent)
|
7
6
|
[![Coverage Status](https://coveralls.io/repos/jnyman/fluent/badge.png?branch=master)](https://coveralls.io/r/jnyman/fluent)
|
8
7
|
[![Code Climate](https://codeclimate.com/github/jnyman/fluent.png)](https://codeclimate.com/github/jnyman/fluent)
|
8
|
+
[![Dependency Status](https://gemnasium.com/jnyman/fluent.png)](https://gemnasium.com/jnyman/fluent)
|
9
9
|
|
10
10
|
Fluent provides a semantic domain-specific language that can be used to construct a fluent interface for test execution libraries.
|
11
11
|
|
@@ -33,9 +33,8 @@ Contributing
|
|
33
33
|
2. Create a branch for your change.
|
34
34
|
3. Make your feature additions or bug fixes in your branch.
|
35
35
|
4. Create unit tests (in spec) for your changes.
|
36
|
-
5.
|
37
|
-
6.
|
38
|
-
7.
|
39
|
-
8. Create a new [pull request](https://help.github.com/articles/using-pull-requests).
|
36
|
+
5. Commit your changes.
|
37
|
+
6. Push to the branch.
|
38
|
+
7. Create a new [pull request](https://help.github.com/articles/using-pull-requests).
|
40
39
|
|
41
40
|
Do note that pull requests are very welcome and are considered better than bug reports. Please create a topic branch for every separate change that you make. When you make commits, do not change the rakefile, version or history information.
|
data/lib/fluent/data_builder.rb
CHANGED
data/lib/fluent/data_config.rb
CHANGED
data/lib/fluent/data_setter.rb
CHANGED
@@ -6,7 +6,7 @@ module Fluent
|
|
6
6
|
data.each do |key, value|
|
7
7
|
use_select_data_with(key, value) if value_selectable_for(key) and object_enabled_for(key)
|
8
8
|
use_check_data_with(key, value) if value_checkable_for(key) and object_enabled_for(key)
|
9
|
-
use_set_data_with(key, value) if value_settable_for(key)
|
9
|
+
use_set_data_with(key, value) if value_settable_for(key) and object_enabled_for(key)
|
10
10
|
use_text_data_with(key, value) if text_settable_for(key) and object_enabled_for(key)
|
11
11
|
end
|
12
12
|
end
|
data/lib/fluent/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Nyman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 2.
|
89
|
+
version: 2.38.0
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 2.
|
96
|
+
version: 2.38.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: mechanize
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|