ruby_pager 0.1.1 → 0.1.2

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: 566196f2bc296b888b46cd0baabe7fe68bad959c
4
- data.tar.gz: 521a72d4e29ef85804d570c65d439e692582b4fd
3
+ metadata.gz: 41ec6d4cd9ae102a76c291063e3b2fe81a4c26ce
4
+ data.tar.gz: b28331c0f6f20fab0364084efa2705cd6dcdc41e
5
5
  SHA512:
6
- metadata.gz: 26596873ba0ee11e2b936651e8b85d1a2f633ef92fe3da10d566bcc15171fc6170756321af571aa15dbe28490aeaf75316134b34c899bd83b3e45fe6278814a1
7
- data.tar.gz: 4a950ddd5b7aa7bce25a42cbebb3b26e846d2a9f17af2633fbaffb1fdfb2a7aefc85effed5f7ead953c9249cdd6e7d43f23324e19d5216f08b56c28cc97df921
6
+ metadata.gz: cf640fa72150bb9f889355d455244df4572e2efcb2840b655c5d006222ddd423d53738a42aab2f390b6ce971faa1b77b1003829e84e4b9dea6b0e325088ec0c4
7
+ data.tar.gz: 1a58e8764f3c6df523031157b5562b8a2e3ddae2fd3dc9cda607a899290daa12810024311c8ff5a71115cffc63fd5648ca86fad9fe773eec6112603332a7759d
data/TODO.txt CHANGED
@@ -1,8 +1,17 @@
1
1
 
2
- https://github.com/cedlemo/ruby-gtk3-tutorial
3
- http://iridakos.com/tutorials/2018/01/25/creating-a-gtk-todo-application-with-ruby
2
+ #CODE WORKFLOW & RELEASE
4
3
  http://bundler.io/v1.12/guides/creating_gem.html
5
4
  https://relishapp.com/rspec/rspec-expectations/v/3-7/docs/built-in-matchers
5
+ https://github.com/svenfuchs/gem-release
6
+
7
+ gem build whatever.gemspec -> creates gem file
8
+ sudo gem install whatever_v_1.0.gem -> installs gem locally
9
+
10
+ gem release -> loads gem into rubygems server for installation and distribution
11
+
12
+ #GEM TUTORIALS
13
+ https://github.com/cedlemo/ruby-gtk3-tutorial
14
+ http://iridakos.com/tutorials/2018/01/25/creating-a-gtk-todo-application-with-ruby
6
15
 
7
16
  CALCULATIONS: RGEO
8
17
  http://daniel-azuma.com/articles/georails/part-3i -->Rgeo
@@ -1,3 +1,3 @@
1
1
  module RubyPager
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -4,9 +4,9 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "ruby_pager"
7
- spec.version = RubyPager::VERSION
8
- spec.authors = ["Vicente Bosch"]
9
- spec.email = ["vbosch@gmail.com"]
7
+ spec.version = RubyPager::VERSION
8
+ spec.authors = ["Vicente Bosch"]
9
+ spec.email = ["vbosch@gmail.com"]
10
10
 
11
11
  spec.summary = "command line tools to read and modify PAGE xmls"
12
12
  spec.description = "command line tools to read and modify PAGE xmls"
@@ -25,8 +25,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
25
25
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
26
  f.match(%r{^(test|spec|features)/})
27
27
  end
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.bindir = 'bin'
29
+ spec.executables = ["baseline_noise","line_edit","page_create","region_edit"]
30
30
  spec.require_paths = ["lib"]
31
31
  spec.add_development_dependency "bundler"
32
32
  spec.add_development_dependency "rake"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_pager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vicente Bosch
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-14 00:00:00.000000000 Z
11
+ date: 2018-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -209,7 +209,11 @@ dependencies:
209
209
  description: command line tools to read and modify PAGE xmls
210
210
  email:
211
211
  - vbosch@gmail.com
212
- executables: []
212
+ executables:
213
+ - baseline_noise
214
+ - line_edit
215
+ - page_create
216
+ - region_edit
213
217
  extensions: []
214
218
  extra_rdoc_files: []
215
219
  files: