movingsign_api 0.0.1 → 0.0.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: e0a1ad2325eb6653f274649048c8cc87521342cf
4
- data.tar.gz: a6c42e582bd97653f85baf448a85db94bed5eaa9
3
+ metadata.gz: 2e4bcaa468cfca5b26e9d7c840cb7a2557c57326
4
+ data.tar.gz: 7f2801a5e6fb24b8717987d566366ccea4170ab0
5
5
  SHA512:
6
- metadata.gz: abef5a49210a9f01bc090de1eb78d5979b0ca2e2969bf45b947309b096a3c047158754c4aee7c6f19e3876ffb752239fb6c93f4138a073f6cf92d9d1b33f93c5
7
- data.tar.gz: c1e6bddf3f7a8c86e48dc5f5b1936a7f3713aa7a2099b69a69db5fa4b9720f2d8f174432106c57c863f83ae6bc5e8ac46716587b6fe06508504c6211954f0d86
6
+ metadata.gz: 665d413e1d5d5f501e2cd2c7b32c5b14e99df816b380fa8fbdefe2ea024e1c371b8083ded524b6335169e9cd088b87adfc2e67327bf3b5b84d1db197fd41bc26
7
+ data.tar.gz: 44f1b99791d929f7db8b14fb17e690ba217753e933ba5659753f1608ec69529f1fe8d69e764e6fc9db9ba27fb2d3f515c25603d7de9f99946d46ea96c121b584
@@ -1,7 +1,8 @@
1
1
  rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- - 2.1.0
2
+ - 1.9.3-p194 # Ruby version on Ubuntu
3
+ - 1.9.3-p484 # Latest in 1.9.3 series
4
+ - 2.0.0-p353 # Latest in 2.0.0 series
5
+ - 2.1.0 # Latest
5
6
  before_script:
6
7
  - gem install bundler --version "~> 1.3"
7
8
  - bundle install
@@ -1,7 +1,17 @@
1
1
  # Version History
2
2
 
3
+ ## Version 0.0.2
4
+
5
+ Feb 21, 2014
6
+
7
+ #### Changed
8
+
9
+ * No longer replace new lines characters in WriteTextCommand#text with \x7F
10
+
3
11
  ## Version 0.0.1
4
12
 
13
+ Feb 18, 2014
14
+
5
15
  #### Added
6
16
 
7
17
  * Write text command
@@ -107,7 +107,7 @@ module MovingsignApi
107
107
  bytes.concat string_to_ascii_bytes('000') # Reserved
108
108
  bytes.concat self.align_mode.to_bytes # Align Mode
109
109
  #bytes.concat string_to_ascii_bytes("\xFD\x42" + self.text.gsub("\n", "\x7F")) # Text
110
- bytes.concat string_to_ascii_bytes(self.text.gsub("\n", "\x7F")) # Text
110
+ bytes.concat string_to_ascii_bytes(self.text) # Text
111
111
 
112
112
  bytes
113
113
  end
@@ -1,3 +1,3 @@
1
1
  module MovingsignApi
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["opensource@collectivegenius.net"]
11
11
  spec.description = "MovingSign Communication Protocol V2.1 Implementation in Ruby"
12
12
  spec.summary = "MovingSign Communication Protocol V2.1 Implementation in Ruby"
13
- spec.homepage = ""
13
+ spec.homepage = "https://github.com/webmonarch/movingsign_api"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: movingsign_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Webb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-19 00:00:00.000000000 Z
11
+ date: 2014-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -145,7 +145,7 @@ files:
145
145
  - spec/tutorials/readme_1.rb
146
146
  - spec/tutorials/readme_2.rb
147
147
  - spec/tutorials/tutorials_spec.rb
148
- homepage: ''
148
+ homepage: https://github.com/webmonarch/movingsign_api
149
149
  licenses:
150
150
  - MIT
151
151
  metadata: {}