SSD1306 0.5.0 → 0.5.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: 9b72c1225182fe4b68f84c697098533da9ec29e8
4
- data.tar.gz: 792815951029ec30523482333453a4dbaa7a66d4
3
+ metadata.gz: 583cb9ed975a035e3082a3e202c9d56185a81e17
4
+ data.tar.gz: 3fe907a1f54d4efcd0045a0c6ee661b965a3bef1
5
5
  SHA512:
6
- metadata.gz: b5f1b3ae71467695c79177221262d6bdad627d73d9ebbe69b877bd729a073897de7e6e9631a46d5269606574e207c4b603d62f967a52b12cc180e136a2b42e4b
7
- data.tar.gz: c47d2cdfaad24d25a7c083c45074a2e6542cf42f409c307b58315606d66f7eb0880bf2d87eb6162343d3da3c24584b423f5cb75a07531676f89355b714d60cb9
6
+ metadata.gz: 36c323bdd3b0388031b3cf541f6ad14d481c9c8326d765e8728cf0d6ae6cf6e0328d2066859a2fa58c8d1dda1054d4d55a13c8dcf2549094367b8f8f42feb8f6
7
+ data.tar.gz: 28b38ecf423ac8c0136c4a85252372f482daf14df3178e7287114c4bd048f1e88cafdd83ac3534c6dd9e69e34852f5fbb61a0ccbf467ce9d6ef46f6a2e60a4f4
@@ -23,8 +23,6 @@ Gem::Specification.new do |spec|
23
23
  # end
24
24
 
25
25
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
- spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
26
  spec.require_paths = ["lib"]
29
27
 
30
28
  spec.add_development_dependency "bundler", "~> 1.11"
@@ -1,3 +1,3 @@
1
1
  module SSD1306
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: SSD1306
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavier Bick
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-04-16 00:00:00.000000000 Z
12
12
  dependencies:
@@ -85,8 +85,7 @@ description: Use this library to interface to an SSD1306 OLED via I2C or SPI. I
85
85
  I2C or SPI.
86
86
  email:
87
87
  - fxb9500@gmail.com
88
- executables:
89
- - SSD1306
88
+ executables: []
90
89
  extensions: []
91
90
  extra_rdoc_files: []
92
91
  files:
@@ -96,9 +95,6 @@ files:
96
95
  - README.md
97
96
  - Rakefile
98
97
  - SSD1306.gemspec
99
- - bin/console
100
- - bin/setup
101
- - exe/SSD1306
102
98
  - lib/SSD1306.rb
103
99
  - lib/SSD1306/cursor.rb
104
100
  - lib/SSD1306/display.rb
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "SSD1306"
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
data/bin/setup DELETED
@@ -1,8 +0,0 @@
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
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "SSD1306"