math_expr 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
  SHA256:
3
- metadata.gz: 106eec5ec34e60824dc64b24d8a3724594e23306c38590f54dd4910c77471403
4
- data.tar.gz: f7454b2fec6dc03cc21360393fdc4ca5aea4b5eab0c0a583da6707bf886162d0
3
+ metadata.gz: 54c56b10d472df4af1ae3463e5ce82ecb90278ed08065e24a058110125b9dee4
4
+ data.tar.gz: 7586b44329ba1997c1117baa9f43c11e8b13b38db4b525fe60626f7da1e5df27
5
5
  SHA512:
6
- metadata.gz: 7b078aa5ab40eef674aa1a93e7d9d1088fcaba1a92d7650f561b0094fb30889df2ca3be260c0eb3ce2b4dc8268f0e60f0b9de24791daf10bc1dc98514ff20ebe
7
- data.tar.gz: 9fd738aeccda623343ba4467dce8d17e501e0a304447a0ce5751c01235db9c83e945e365dbb494be2c8bddd8b749a302d806bc7a0a2b2f0f27bf36e5f7a182fb
6
+ metadata.gz: 7c986bdbf4dfadba2458c1702c3bf3847930060059ce52361ee1691fbc1ae8f5960a9f57be573618381c9357afb14bdcee7244db0a5a2c7ae907879dd4d1850f
7
+ data.tar.gz: c91cc6bddfc6dab44da653c1f8ad2dec89a2e136d146fe3a05f9c2b27310881fbcb8624daa4f3337d324b183fae6a83673faf7f8afc09ad6e45ae9b647b04b1e
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- # Specify your gem's dependencies in math_expression.gemspec
3
+ # Specify your gem's dependencies in math_expr.gemspec
4
4
  gemspec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- math_expr (0.1.0)
4
+ math_expr (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # MathExpression
1
+ # MathExpr
2
2
 
3
3
  Parses a mathematical expression from infix notation into reverse polish notation and produces a result.
4
4
 
@@ -1,3 +1,3 @@
1
1
  module MathExpression
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -8,18 +8,18 @@ Gem::Specification.new do |spec|
8
8
 
9
9
  spec.summary = %q{Mathematical expression parser and executor}
10
10
  spec.description = %q{Mathematical expression parser and executor}
11
- spec.homepage = "https://github.com/inclooder/math_expression"
11
+ spec.homepage = "https://github.com/inclooder/math_expr"
12
12
  spec.license = "MIT"
13
13
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
- spec.metadata["source_code_uri"] = "https://github.com/inclooder/math_expression"
17
- spec.metadata["changelog_uri"] = "https://github.com/inclooder/math_expression"
16
+ spec.metadata["source_code_uri"] = "https://github.com/inclooder/math_expr"
17
+ spec.metadata["changelog_uri"] = "https://github.com/inclooder/math_expr"
18
18
 
19
- # Specify which files should be added to the gem when it is released.
20
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ Dir.glob(['**/*', '**/.??*']).
21
+ select { |e| File.file?(e) }.
22
+ reject { |f| f.match(%r{^(test|spec|features)/}) }
23
23
  end
24
24
  spec.bindir = "exe"
25
25
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: math_expr
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
  - Inclooder
@@ -43,14 +43,15 @@ files:
43
43
  - lib/math_expression.rb
44
44
  - lib/math_expression/parser.rb
45
45
  - lib/math_expression/version.rb
46
- - math_expression.gemspec
47
- homepage: https://github.com/inclooder/math_expression
46
+ - math_expr-0.1.1.gem
47
+ - math_expr.gemspec
48
+ homepage: https://github.com/inclooder/math_expr
48
49
  licenses:
49
50
  - MIT
50
51
  metadata:
51
- homepage_uri: https://github.com/inclooder/math_expression
52
- source_code_uri: https://github.com/inclooder/math_expression
53
- changelog_uri: https://github.com/inclooder/math_expression
52
+ homepage_uri: https://github.com/inclooder/math_expr
53
+ source_code_uri: https://github.com/inclooder/math_expr
54
+ changelog_uri: https://github.com/inclooder/math_expr
54
55
  post_install_message:
55
56
  rdoc_options: []
56
57
  require_paths: