memopri 0.0.1 → 0.0.2.pre.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: ac58d6086b19b85df3c802091323708b461cf92e
4
- data.tar.gz: b64317f3ad396666c6170784ee38a685b064c99c
3
+ metadata.gz: e7243f9007c71d7e68e49fccfb7831289875ed68
4
+ data.tar.gz: 2597698e56f9fcfa7dc7c5f4ae53a60502f3a272
5
5
  SHA512:
6
- metadata.gz: b2e78b0ee4e1568e1a1a8e8f7722ae5aae25d0784624241886def7004295d1ba07e696d1c9b370fad6b47747afa93e073e64015912f7d688988b1003c0ba5816
7
- data.tar.gz: 28763d0f0d37779045bbbd8b1d180112a35f0b0d58b36feb399c10256a91fc41dc0e3e36e9d753823861ca7b8ce36a9b9a234885acd255510daebab77847b3ff
6
+ metadata.gz: 8b1034c9306f6700df42b6c284cdb409e2673583f718b82b3dacf700ae3f4b8de03ade7a22f1f80532c892d18ee8dd729f314ba701ef3232fea29f202d649e41
7
+ data.tar.gz: 19714f22e14e58155bebd6379ab34cc00c7cc7bb2524ee77d8c5f8bcc88f1b8b3bea9ef923503ba0108dc2c0a9d601fc6e64957c2adda28cdaef72bd4cf3c1ae
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # CLI Utility for Memopri MEP-F10
2
2
 
3
- This is a command line based application to use Casio's Memopri (MEP-F10).
3
+ This is a command line based application to use Casio's Memopri (MEP-F10). MEP-F10 is a sticker printer and it is very cheap around 5000 yen ($50). There are no nice same kinds of device which runs on Linux environemnt. You can print stickers using this software.
4
+
5
+ * [Amazon Link w/ my affiliaton](http://www.amazon.co.jp/gp/product/B00B973384/ref=as_li_ss_tl?ie=UTF8&camp=247&creative=7399&creativeASIN=B00B973384&linkCode=as2&tag=mixallowblogd-22)
6
+
4
7
 
5
8
  # Installation
6
9
 
@@ -10,6 +13,12 @@ This is a command line based application to use Casio's Memopri (MEP-F10).
10
13
 
11
14
  * echo -e "hoge\nhoge" | memopri
12
15
 
16
+ # ToDo
17
+
18
+ * Image
19
+ * Fix magic numbers
20
+ * Analyze communication protocols more
21
+
13
22
  # Test environment
14
23
 
15
24
  Debian GNU/Linux w/ ruby 2.1.5p273 (2014-11-13) [x86-64-linux-gnu]
data/bin/memopri CHANGED
@@ -12,6 +12,7 @@ device = nil
12
12
  noline = 1
13
13
 
14
14
  if devices == nil
15
+ puts "No such device. Please ensure WiFi connectivity."
15
16
  exit -1
16
17
  end
17
18
 
@@ -1,3 +1,3 @@
1
1
  class Memopri
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2-1"
3
3
  end
data/memopri.gemspec CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Hiroyuki Ikegami"]
10
10
  spec.email = ["ikegam@mixallow.net"]
11
11
  spec.summary = %q{Client software for CASIO Memopri MEP-F10}
12
- spec.description = %q{Client software for CASIO Memopri MEP-F10}
13
- spec.homepage = ""
12
+ spec.description = %q{This is a command line based application to use Casio's Memopri (MEP-F10). MEP-F10 is a sticker printer and it is very cheap around 5000 yen ($50). There are no nice same kinds of device which runs on Linux environemnt. You can print stickers using this software.}
13
+ spec.homepage = "https://github.com/ikegam/memopri"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memopri
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroyuki Ikegami
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-31 00:00:00.000000000 Z
11
+ date: 2015-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,7 +66,10 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: Client software for CASIO Memopri MEP-F10
69
+ description: This is a command line based application to use Casio's Memopri (MEP-F10).
70
+ MEP-F10 is a sticker printer and it is very cheap around 5000 yen ($50). There are
71
+ no nice same kinds of device which runs on Linux environemnt. You can print stickers
72
+ using this software.
70
73
  email:
71
74
  - ikegam@mixallow.net
72
75
  executables:
@@ -80,14 +83,13 @@ files:
80
83
  - README.md
81
84
  - Rakefile
82
85
  - bin/memopri
83
- - lib/label.png
84
86
  - lib/memopri/finder.rb
85
87
  - lib/memopri/printer.rb
86
88
  - lib/memopri/renderer.rb
87
89
  - lib/memopri/version.rb
88
90
  - memopri.gemspec
89
91
  - sample/test-print.rb
90
- homepage: ''
92
+ homepage: https://github.com/ikegam/memopri
91
93
  licenses:
92
94
  - MIT
93
95
  metadata: {}
@@ -102,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
102
104
  version: '0'
103
105
  required_rubygems_version: !ruby/object:Gem::Requirement
104
106
  requirements:
105
- - - ">="
107
+ - - ">"
106
108
  - !ruby/object:Gem::Version
107
- version: '0'
109
+ version: 1.3.1
108
110
  requirements: []
109
111
  rubyforge_project:
110
112
  rubygems_version: 2.2.2
data/lib/label.png DELETED
Binary file