masina 0.1.3 → 0.1.4

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
  SHA256:
3
- metadata.gz: d684f7b2519cb2f0e437ad0ad4f21e5990dd72149ecf75edf093ee22c8b5cf98
4
- data.tar.gz: f68391dad527c78626b7c29749045ed90a12686855c3ce14bc4a6231c7b6753e
3
+ metadata.gz: d143e8bc5f7ca43bfdc37afb50db048f7c06de8733f546fa5819084f9460d523
4
+ data.tar.gz: 70b2b2998aa31c25b48e1986bada11582b89e307770b7bd9ebed7a95f89cd4e5
5
5
  SHA512:
6
- metadata.gz: 5bb5e58bf358e1e8d15e88e2aeae23e976a4fa234183c5de090440b0a30ba428c0237d1f6a83e97f6230a7cac4b48acd897e5f18b55f504e0b301c2c851147dd
7
- data.tar.gz: d6e2c38167ba54d404d228d4d8ab256d63549982c43c43cd3b00e21a222c7f7387ab8e6ab45fffc1d1cf39dfcdf80bd0ed504bec6d2190598a12e97fe57a1d78
6
+ metadata.gz: 54e1b04be96acae66f3579afe709d6aca7e4b82cee1f877007b1638d51ee08566b7260537c0b701918b8436cbafb0e7c2bb325de734f48a418e2c2ff57d7b551
7
+ data.tar.gz: 4872decfc681fe89c7620dd9c0fd2a9582cdb8445141653a1ed4bc3e77cde972bcf3c223fec4f4ef51581ff569f1e90bf79527e09b8181023f01e60ea37bd6b6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- masina (0.1.2)
4
+ masina (0.1.3)
5
5
  colorize (~> 0.8.1)
6
6
 
7
7
  GEM
data/exe/masina ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'masina'
5
+
6
+ version = Masina::VERSION
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'optparse'
4
+
5
+ module Options
6
+
7
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Masina
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.4'
5
5
  end
data/lib/masina.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'masina/version'
4
+ require 'masina/options'
4
5
 
5
6
  module Masina
6
7
  class Error < StandardError; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: masina
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleksandar Popovic
@@ -115,7 +115,8 @@ dependencies:
115
115
  description: Ruby Apps Packaging
116
116
  email:
117
117
  - aleksandar.popovic.popac@gmail.com
118
- executables: []
118
+ executables:
119
+ - masina
119
120
  extensions: []
120
121
  extra_rdoc_files: []
121
122
  files:
@@ -132,7 +133,9 @@ files:
132
133
  - Rakefile
133
134
  - bin/console
134
135
  - bin/setup
136
+ - exe/masina
135
137
  - lib/masina.rb
138
+ - lib/masina/options.rb
136
139
  - lib/masina/version.rb
137
140
  - masina.gemspec
138
141
  - rubocop.yml