fluent 0.7.0 → 0.7.1

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: e7b289657c5c2713886307bdc023c6fdcaf9bbcb
4
- data.tar.gz: 38bb9627501b8de39e237a5394075f2777160098
3
+ metadata.gz: 0244ad5c205af2844ca783ff52121602e291b1c5
4
+ data.tar.gz: e0749a92326575a29a735545a42cd2981d15c203
5
5
  SHA512:
6
- metadata.gz: a092ca78215b22f6b0b62918db49bf3adf109133dc3552df6c0c05cddc52b86863b06121a0a2403c5e62a399a5532cac4f8feee00b215f02fdcb7c9f0cebdd08
7
- data.tar.gz: a640ce119c147c73d3acf21f50b5e6ad1bbef349de59b3d9b9ec7dcbcb9a7ad4568d3c8df4394b641ac6218de7574bd3c6dc93a3825429a1ffa0250201e5f952
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. Create acceptance tests (in specs) for your changes.
37
- 6. Commit your changes.
38
- 7. Push to the branch.
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.
@@ -9,7 +9,7 @@ module Fluent
9
9
  end
10
10
 
11
11
  def self.default_data_path
12
- 'common/data'
12
+ 'data'
13
13
  end
14
14
 
15
15
  def data_for(key, specified={})
@@ -40,7 +40,7 @@ module Fluent
40
40
  end
41
41
 
42
42
  def self.default_data_path
43
- 'common/data'
43
+ 'config'
44
44
  end
45
45
 
46
46
  end
@@ -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) and object_enabled_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
@@ -1,3 +1,3 @@
1
1
  module Fluent
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
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.0
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-06 00:00:00.000000000 Z
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.37.0
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.37.0
96
+ version: 2.38.0
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: mechanize
99
99
  requirement: !ruby/object:Gem::Requirement