nonsensor 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '061698c92fd5313fa5076a23d25ae3def8c90d1c974a1a068799caceb9224aa7'
4
+ data.tar.gz: fd6f5e6371e3aeb75728c4bcba158136a413b8e6fe54867f409c322733ed3d0b
5
+ SHA512:
6
+ metadata.gz: 36942a5750c19a07c5fbfde4f946c2a7b2de2660ff0f30cd6e81c53e3ba02f4e0e171c548460d9ee455d2f5a93d15b933ec4f7ee95bfe683e76f960c5777293b
7
+ data.tar.gz: 9d677daf89d98401e47ecca4d10ee427c82cb0bbea49ab848f2cff865a1e7feecc8cc3c1a228cf43563c4e12f5082cabfd6667c5c3d833824a412292cc7e700b
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.3
5
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at michal@michalmusialik.com. 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.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in nonsensor.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,31 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nonsensor (0.2.4)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ansi (1.5.0)
10
+ builder (3.2.3)
11
+ minitest (5.11.3)
12
+ minitest-reporters (1.3.5)
13
+ ansi
14
+ builder
15
+ minitest (>= 5.0)
16
+ ruby-progressbar
17
+ rake (10.5.0)
18
+ ruby-progressbar (1.10.0)
19
+
20
+ PLATFORMS
21
+ ruby
22
+
23
+ DEPENDENCIES
24
+ bundler (~> 1.16)
25
+ minitest (~> 5.0)
26
+ minitest-reporters (~> 1.3.5)
27
+ nonsensor!
28
+ rake (~> 10.0)
29
+
30
+ BUNDLED WITH
31
+ 1.16.6
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Michal Musialik
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,79 @@
1
+ # Nonsensor
2
+
3
+ Generate streams of random data that look good on charts.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'nonsensor'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install nonsensor
20
+
21
+ ## Usage
22
+
23
+ Note: this gem is experimental and it's guaranteed that the public API will change with each commit. For now.
24
+
25
+ Currently there are 3 classes of interest `Nonsensor::DateSeries`, `Nonsensor::MidpointDisplacement`, `Nonsensor::Sensor`.
26
+
27
+ The first two are used to generate new values each time the `next!` method is called. While `Sensor` can be used to combine them.
28
+
29
+ Example:
30
+
31
+ ```
32
+ date = Nonsensor::DateSeries.new(start: Date.new(2018, 10, 10))
33
+ date.take!(3).map(&:to_s)
34
+ # => ["2018-10-10", "2018-10-10", "2018-10-10"]
35
+
36
+ temperature = Nonsensor::MidpointDisplacement.new(start: 25, displacement: 5)
37
+ temperature.take!(3).map(&:to_s)
38
+ # => ["25", "25.215588830195678", "25.137908924728947"]
39
+
40
+ pressure = Nonsensor::MidpointDisplacement.new(start: 1000, displacement: 25)
41
+ pressure.take!(3).map(&:to_s)
42
+ # => ["1000", "1002.3275690365925", "1002.1710234288906"]
43
+
44
+ sensor = Nonsensor::Sensor.new({ date: date, temperature: temperature, pressure: pressure })
45
+
46
+ puts sensor.take!(10).map { |v| "date: #{v[:date]}, temperature: #{v[:temperature].round(2)}C, pressure: #{v[:pressure].round}hPa" }
47
+ # date: 2018-10-13, temperature: 25.32C, pressure: 999hPa
48
+ # date: 2018-10-14, temperature: 25.43C, pressure: 999hPa
49
+ # date: 2018-10-15, temperature: 25.54C, pressure: 998hPa
50
+ # date: 2018-10-16, temperature: 25.77C, pressure: 998hPa
51
+ # date: 2018-10-17, temperature: 25.95C, pressure: 1000hPa
52
+ # date: 2018-10-18, temperature: 26.11C, pressure: 1000hPa
53
+ # date: 2018-10-19, temperature: 26.41C, pressure: 1000hPa
54
+ # date: 2018-10-20, temperature: 26.96C, pressure: 1000hPa
55
+ # date: 2018-10-21, temperature: 27.04C, pressure: 1000hPa
56
+ # date: 2018-10-22, temperature: 27.21C, pressure: 1000hPa
57
+ ```
58
+
59
+ - `next!` with a bang, because each call will change state of the instance
60
+ - `take(10)` without a bang will return a lazy enumerator
61
+ - `take!(10)` with a bang will return an array, but be careful because there's an infinite loop underneath
62
+
63
+ ## Development
64
+
65
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
66
+
67
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
68
+
69
+ ## Contributing
70
+
71
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ruby-logic/nonsensor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
72
+
73
+ ## License
74
+
75
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
76
+
77
+ ## Code of Conduct
78
+
79
+ Everyone interacting in the Nonsensor project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ruby-logic/nonsensor/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "nonsensor"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,16 @@
1
+ require "date"
2
+
3
+ class Nonsensor::DateSeries
4
+ include Nonsensor::Series
5
+
6
+ def initialize(start: Date.today, step: 1)
7
+ @date = start
8
+ @step = step
9
+ end
10
+
11
+ def next!
12
+ date = @date
13
+ @date += @step
14
+ date
15
+ end
16
+ end
@@ -0,0 +1,70 @@
1
+ class Nonsensor::MidpointDisplacement
2
+ include Nonsensor::Series
3
+
4
+ attr_reader :start, :batch, :batch_size
5
+
6
+ def initialize(start: 0.0, displacement: 50.0, decay_power: 1, batch_size: 100)
7
+ @start = start
8
+ @initial_displacement = displacement
9
+ @decay = (1.0 / 2 ** decay_power)
10
+ @batch_size = batch_size.to_i
11
+
12
+ @batch = []
13
+ end
14
+
15
+ def next!
16
+ make_batch if @batch.empty?
17
+ @batch.shift
18
+ end
19
+
20
+ private
21
+
22
+ def make_batch
23
+ @batch = Array.new(@batch_size, start)
24
+ @iteration = 1
25
+ @current_iteration = []
26
+ @next_iteration = []
27
+ @displacement = @initial_displacement
28
+
29
+ @current_iteration << [0, @batch_size - 1] if segment_length(0, @batch_size - 1) > 2
30
+
31
+ while @current_iteration.any? do
32
+ from, to = *(@current_iteration.shift)
33
+
34
+ midpoint = displace_midpoint(from, to)
35
+
36
+ enqueue_segment(from, midpoint)
37
+ enqueue_segment(midpoint, to)
38
+ next_iteration
39
+ end
40
+
41
+ @batch
42
+ end
43
+
44
+ def displace_midpoint(from, to)
45
+ midpoint = (from + to) / 2
46
+ @batch[midpoint] = (@batch[from] + @batch[to]) / 2 + rand(displacement_bounds)
47
+ midpoint
48
+ end
49
+
50
+ def enqueue_segment(from, to)
51
+ @next_iteration << [from, to] if segment_length(from, to) > 2
52
+ end
53
+
54
+ def segment_length(from, to)
55
+ to - from + 1
56
+ end
57
+
58
+ def next_iteration
59
+ return if @current_iteration.any?
60
+ return if @next_iteration.empty?
61
+
62
+ @current_iteration = @next_iteration
63
+ @next_iteration = []
64
+ @displacement = @displacement * @decay
65
+ end
66
+
67
+ def displacement_bounds
68
+ -@displacement..@displacement
69
+ end
70
+ end
@@ -0,0 +1,11 @@
1
+ class Nonsensor::Sensor
2
+ include Nonsensor::Series
3
+
4
+ def initialize(generators = {})
5
+ @generators = generators
6
+ end
7
+
8
+ def next!
9
+ Hash[@generators.map { |key, gen| [key, gen.next!] }]
10
+ end
11
+ end
@@ -0,0 +1,21 @@
1
+ module Nonsensor::Series
2
+ def next!
3
+ raise '#next! must be implemented for Nonsensor::Series'
4
+ end
5
+
6
+ def to_enum
7
+ Enumerator.new do |yielder|
8
+ loop do
9
+ yielder << self.next!
10
+ end
11
+ end.lazy
12
+ end
13
+
14
+ def take(*args)
15
+ to_enum.take(*args)
16
+ end
17
+
18
+ def take!(*args)
19
+ take(*args).force
20
+ end
21
+ end
@@ -0,0 +1,3 @@
1
+ module Nonsensor
2
+ VERSION = "0.1.0"
3
+ end
data/lib/nonsensor.rb ADDED
@@ -0,0 +1,8 @@
1
+ require_relative "nonsensor/version"
2
+ require_relative "nonsensor/series"
3
+ require_relative "nonsensor/date_series"
4
+ require_relative "nonsensor/midpoint_displacement"
5
+ require_relative "nonsensor/sensor"
6
+
7
+ module Nonsensor
8
+ end
data/nonsensor.gemspec ADDED
@@ -0,0 +1,28 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "nonsensor/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "nonsensor"
8
+ spec.version = Nonsensor::VERSION
9
+ spec.authors = ["Michał Musialik"]
10
+ spec.email = ["info@rubylogic.eu"]
11
+
12
+ spec.summary = "Generate streams of random data that look good on charts."
13
+ spec.description = "Generate streams of random data that look good on charts."
14
+ spec.homepage = "http://rubylogic.eu/"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.16"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "minitest", "~> 5.0"
27
+ spec.add_development_dependency "minitest-reporters", "~> 1.3"
28
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nonsensor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Michał Musialik
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-12-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest-reporters
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ description: Generate streams of random data that look good on charts.
70
+ email:
71
+ - info@rubylogic.eu
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".travis.yml"
78
+ - CODE_OF_CONDUCT.md
79
+ - Gemfile
80
+ - Gemfile.lock
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - lib/nonsensor.rb
87
+ - lib/nonsensor/date_series.rb
88
+ - lib/nonsensor/midpoint_displacement.rb
89
+ - lib/nonsensor/sensor.rb
90
+ - lib/nonsensor/series.rb
91
+ - lib/nonsensor/version.rb
92
+ - nonsensor.gemspec
93
+ homepage: http://rubylogic.eu/
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.7.6
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: Generate streams of random data that look good on charts.
117
+ test_files: []