flex_struct 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be5088836ee8daf48c1348b406db1f7f57e20f2e
4
- data.tar.gz: ff5c0e89a2ae853d337d4b2ba5fc945c65413f22
3
+ metadata.gz: b41188dad810ee1dfddb58e61c22a175b59d2e52
4
+ data.tar.gz: ccbfffeec4f0e28700fe9205ba66dcd1f60cca50
5
5
  SHA512:
6
- metadata.gz: 95b8a633396b72cd8da9825b008e66e06f1c528ba873255b8f9927b138d760452cd02a24d7af8bb0735a036a0976979fd52f06a1590e31c778f9d8f22985b9fe
7
- data.tar.gz: 7f4bd82e56b4a7fda380634a9302517b4d83bc7bd14aedf537cfb4ba1f3ffa246249190e98e2da17b7da871a98f6e72f28b22caf69a3a8fcd7191f38004f799a
6
+ metadata.gz: 5087acc7e7146c473935885eac8c586cb972fcaa0b9c7775bb677ca053f368f3696d159ad9d9cf0e8392bb8dfd6d3eed1da69be3f7631d29f311c9db591bfbfd
7
+ data.tar.gz: 200a92118fa421997b97b11a0d47956fc7e13f733f2876cbf8d9c2cfd06fbe4f97b6848e8e82b7f59694ac84f0ec064904c874a42f4cee97f43d251082479bb2
data/CODE_OF_CONDUCT.md CHANGED
@@ -55,11 +55,11 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at TODO: Write your email address. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
58
+ reported by contacting the project team at gareth@bridge-u.com. All complaints
59
+ will be reviewed and investigated and will result in a response that is deemed
60
+ necessary and appropriate to the circumstances. The project team is obligated to
61
+ maintain confidentiality with regard to the reporter of an incident. Further
62
+ details of specific enforcement policies may be posted separately.
63
63
 
64
64
  Project maintainers who do not follow or enforce the Code of Conduct in good
65
65
  faith may face temporary or permanent repercussions as determined by other
data/Guardfile CHANGED
@@ -10,7 +10,7 @@ guard :bundler do
10
10
  files.each { |file| watch(helper.real_path(file)) }
11
11
  end
12
12
 
13
- guard :rspec, cmd: "bundle exec rspec" do
13
+ guard :rspec, cmd: "bundle exec rspec", all_after_pass: false do
14
14
  require "guard/rspec/dsl"
15
15
  dsl = Guard::RSpec::Dsl.new(self)
16
16
 
data/README.md CHANGED
@@ -136,7 +136,7 @@ git commits and tags, and push the `.gem` file to
136
136
  ## Contributing
137
137
 
138
138
  Bug reports and pull requests are welcome on GitHub at
139
- https://github.com/gareth/flex_struct. This project is intended to be a safe,
139
+ https://github.com/bridgeu/flex_struct. This project is intended to be a safe,
140
140
  welcoming space for collaboration, and contributors are expected to adhere to
141
141
  the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
142
142
 
@@ -149,4 +149,4 @@ License](http://opensource.org/licenses/MIT).
149
149
 
150
150
  Everyone interacting in the FlexStruct project’s codebases, issue trackers, chat
151
151
  rooms and mailing lists is expected to follow the [code of
152
- conduct](https://github.com/gareth/flex_struct/blob/master/CODE_OF_CONDUCT.md).
152
+ conduct](https://github.com/bridgeu/flex_struct/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile CHANGED
@@ -1,12 +1,11 @@
1
1
  require "bundler/gem_tasks"
2
- require "reek/rake/task"
3
2
  require "rspec/core/rake_task"
4
3
  require "rubocop/rake_task"
5
4
 
6
5
  RSpec::Core::RakeTask.new(:spec)
7
- RuboCop::RakeTask.new
8
- Reek::Rake::Task.new do |t|
9
- t.fail_on_error = false
6
+
7
+ RuboCop::RakeTask.new do |t|
8
+ t.options = %w[--format simple --fail-level warning]
10
9
  end
11
10
 
12
- task default: %i[spec rubocop reek]
11
+ task default: %i[spec rubocop]
data/flex_struct.gemspec CHANGED
@@ -23,5 +23,4 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency "bundler", "~> 1.15"
24
24
  spec.add_development_dependency "rake", "~> 10.0"
25
25
  spec.add_development_dependency "rubocop", "~> 0.48.1"
26
- spec.add_development_dependency "reek", "~> 4.0"
27
26
  end
@@ -1,3 +1,3 @@
1
1
  class FlexStruct
2
- VERSION = "0.1.1".freeze
2
+ VERSION = "0.1.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flex_struct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gareth Adams
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-11 00:00:00.000000000 Z
11
+ date: 2017-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.48.1
55
- - !ruby/object:Gem::Dependency
56
- name: reek
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '4.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '4.0'
69
55
  description:
70
56
  email:
71
57
  - gareth@bridge-u.com