lexy 0.1.8 → 0.1.9

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: 8b39ef5c81fdaf553f39e1543eb0f53b42f07e176b2d50e415c500e0a23d4ccb
4
- data.tar.gz: 1634af8ee3b37710f4ee789901cbe2cf737c0776fab840436286b802f470995f
3
+ metadata.gz: 15e549caeac9deaf55bd0fb14a2ba59177b5e5727bf1dededeb199e18f950543
4
+ data.tar.gz: e56fa0ae082a99b6093ef7170afd50b527683cea365ec4b2b6e26183c23bb19d
5
5
  SHA512:
6
- metadata.gz: be76fb0871d3b79e0edc47cad8e647ccdf17a5faed8c5af953dceb6ed3dc0245b75c9b3d2b604c8f7dc762d03fff4944c1b3c5ad15cd2a655e0c2dbb1990e855
7
- data.tar.gz: b757a443ebb53d0d236f8b411a5ac4cf5785277c1a7d2008e4f32579c68f13c47149364668d01fbb74eedce6e051f151bd69b5642a1c6760881c072ff579349e
6
+ metadata.gz: fc98f980259229590edb2bf071c3232b1356c14875ca71ab0fe595e2c99e70c4a9aa2cfc8f0ffcb83b8fff9ea5de36f232a61ef77c1bd6e7b733c8280b4944fc
7
+ data.tar.gz: cf7c406cedf1c60037dd912efd00bdb0570445b73859261bfc73278e053af702da9a6e0159ea933eca7174e8919363aa59d709aea826414366c58280f5900f1c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lexy (0.1.8)
4
+ lexy (0.1.9)
5
5
  parser (>= 2.7.0.1)
6
6
  thor (>= 0.19.0)
7
7
 
data/exe/lexy CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  # frozen_string_literal: true
4
4
 
5
- require 'bundler/setup'
6
-
7
5
  $:.unshift File.expand_path("../../lib/", __FILE__)
8
6
 
7
+ require 'thor'
9
8
  require 'lexy'
10
9
 
11
-
12
10
  Lexy::CLI.start(ARGV)
data/lib/lexy.rb CHANGED
@@ -1,8 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'lexy/version'
4
- require 'lexy/spec_creator'
5
- require 'lexy/cli'
3
+ require 'thor'
4
+ require 'parser/current'
6
5
 
7
6
  module Lexy
8
7
  end
8
+
9
+ require 'lexy/version'
10
+ require 'lexy/spec_creator'
11
+ require 'lexy/cli'
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'fileutils'
4
- require 'parser/current'
5
4
 
6
5
  module Lexy
7
6
  class SpecCreator
data/lib/lexy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lexy
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lexy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rostislav Katin