math_expr 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/math_expression/version.rb +1 -1
- data/{math_expression.gemspec → math_expr.gemspec} +7 -7
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54c56b10d472df4af1ae3463e5ce82ecb90278ed08065e24a058110125b9dee4
|
4
|
+
data.tar.gz: 7586b44329ba1997c1117baa9f43c11e8b13b38db4b525fe60626f7da1e5df27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c986bdbf4dfadba2458c1702c3bf3847930060059ce52361ee1691fbc1ae8f5960a9f57be573618381c9357afb14bdcee7244db0a5a2c7ae907879dd4d1850f
|
7
|
+
data.tar.gz: c91cc6bddfc6dab44da653c1f8ad2dec89a2e136d146fe3a05f9c2b27310881fbcb8624daa4f3337d324b183fae6a83673faf7f8afc09ad6e45ae9b647b04b1e
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -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/
|
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/
|
17
|
-
spec.metadata["changelog_uri"] = "https://github.com/inclooder/
|
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
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
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.
|
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
|
-
-
|
47
|
-
|
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/
|
52
|
-
source_code_uri: https://github.com/inclooder/
|
53
|
-
changelog_uri: https://github.com/inclooder/
|
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:
|