tremolo 0.2.2 → 0.3.0

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: 769941b708e684ea7bcf2d71ad5d106229b9522e
4
- data.tar.gz: 697604b4fcb056eec178aac7117e5b874700240c
3
+ metadata.gz: 3c18967c48023e3b4e83562d346f46f33dd939d7
4
+ data.tar.gz: cba2f9681076061072f59dc1716ac4db62879c58
5
5
  SHA512:
6
- metadata.gz: 0133bd5fa833494a7ab8c4320dde7c19c6cc86f5d6c35c67621a98b87bc2ac73f52ef59b0d594077d115bbafe49621b73f7e076ea4a8b9128ffcb5dfa0d89d34
7
- data.tar.gz: aadf2e5a4baf0dafd1b42c45fd8be8933ff66ae34eb96b24b7981d749271328906793c56f21cdcb7b6ad4146fdfa75f0af80904da58b8a833e6bc1d31b8bea27
6
+ metadata.gz: b864130f68f7764a317784dabf7122147a209b9334dbda370abd3d92753ab48db3fa8df9b2940f0c9569556fc3ae4b6c29b96039e96377ccf427a0305ae6b5e5
7
+ data.tar.gz: 1a50ce42c5a1a8a4905952b5e9c7d1eeec585100901ff05456a787ca4682d52db0e70dfe29f046e9f57680f85d83463c26824478512235713c8ee78c78176540
@@ -0,0 +1,14 @@
1
+ ---
2
+ engines:
3
+ rubocop:
4
+ enabled: true
5
+ duplication:
6
+ enabled: true
7
+ config:
8
+ languages:
9
+ - ruby
10
+ ratings:
11
+ paths:
12
+ - "**.rb"
13
+ exclude_paths:
14
+ - spec/**/*
@@ -1,3 +1,9 @@
1
+ ## Tremolo 0.3.0 ##
2
+
3
+ * Switch to require celluloid/current to not trigger deprecation warning
4
+
5
+ *Tony Pitale*
6
+
1
7
  ## Tremolo 0.2.2 ##
2
8
 
3
9
  * Fix tremolo on ruby 2.1 series
@@ -11,12 +11,14 @@ Examples of unacceptable behavior by participants include:
11
11
  * Trolling or insulting/derogatory comments
12
12
  * Public or private harassment
13
13
  * Publishing other's private information, such as physical or electronic addresses, without explicit permission
14
- * Other unethical or unprofessional conduct.
14
+ * Other unethical or unprofessional conduct
15
15
 
16
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
16
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
17
+
18
+ By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
17
19
 
18
20
  This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
19
21
 
20
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
22
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer at [INSERT EMAIL ADDRESS]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
21
23
 
22
- This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)
24
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.3.0, available at [http://contributor-covenant.org/version/1/3/0/](http://contributor-covenant.org/version/1/3/0/)
data/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  InfluxDB UDP Tracker built on Celluloid::IO
4
4
 
5
+ [![Build Status](https://travis-ci.org/tpitale/tremolo.svg?branch=master)](https://travis-ci.org/tpitale/tremolo)
6
+ [![Code Climate](https://codeclimate.com/github/tpitale/tremolo.png)](https://codeclimate.com/github/tpitale/tremolo)
7
+
5
8
  ## Installation
6
9
 
7
10
  Add this line to your application's Gemfile:
@@ -1,7 +1,7 @@
1
1
  require "tremolo/version"
2
2
 
3
3
  require "json"
4
- require "celluloid"
4
+ require "celluloid/current"
5
5
  Celluloid.boot
6
6
 
7
7
  require "celluloid/io"
@@ -1,3 +1,3 @@
1
1
  module Tremolo
2
- VERSION = "0.2.2"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -6,6 +6,7 @@ require 'bundler/setup'
6
6
  require 'rspec'
7
7
  require 'mocha/api'
8
8
  require 'bourne'
9
+ require 'celluloid/current'
9
10
  require 'celluloid/test'
10
11
 
11
12
  $CELLULOID_DEBUG = false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tremolo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Pitale
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-10 00:00:00.000000000 Z
11
+ date: 2016-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid-io
@@ -115,6 +115,7 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - ".codeclimate.yml"
118
119
  - ".gitignore"
119
120
  - ".rspec"
120
121
  - ".ruby-version"