anagram_algo 1.01 → 1.02

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: c8e3f75c0196a163cda9c06e89b018be4fd1ccd89efcda8d60213bbe6aec1435
4
- data.tar.gz: a35bf6efbf0c06f83c2fb74649d5b7ccbdac597af5830d6b4e6aa6a1a7952a00
3
+ metadata.gz: bdc6efd05b20b880d552068723471c0f3527c6b76744fa9a42f2e5133b58238e
4
+ data.tar.gz: 5ef078f6f1958a2f52d5b8a2723cff3bff72df7f2260a156c647b28072277e25
5
5
  SHA512:
6
- metadata.gz: 03c0bf57ea3ade4d2e8e529023bb11d2f644e63306f7f2aa8822d2bd75006e3cf74add194d83003660c780a7e31c2df1e041765b76c59246eae122bc2b39c290
7
- data.tar.gz: 807fa2b9d8bbdcc54c4b6511badf8a3133bfcb6f0a9ed297386d314277aaf5dffc38c1fbaf743a53ccaa9e5d506e15c80dda86190cbf15221f90412e5dfb4779
6
+ metadata.gz: 831a31f94b9d02501d78a0cfaad2b7c03419072ed4507f4457c260b0f2d6198f67f4ee45daa62f323202787bc6d1919bb205b009ef12f50e97eacb19e6c2e469
7
+ data.tar.gz: 6c10fc5919ce48c8a8e6395d51a48800d231471b88af4edb7881e39919df8accbb94d20e707ce68d48f79b7efacf1fc92220bff85a52916c1af008dd6e3db088
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # Anagram_Algo
1
+ # AnagramAlgo
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/anagram_algo.svg)](https://badge.fury.io/rb/anagram_algo)
4
4
  [![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- #### Anagram_Algo is a simple algorithm to find and return list of anagrams from your text input. .
6
+ #### AnagramAlgo is a simple algorithm to find and return list of anagrams from your text input. .
7
7
 
8
8
  Note: Currently being moved from local environment to this gem. Will be completed by 7/10/18
9
9
 
@@ -43,4 +43,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
43
43
 
44
44
  ## Code of Conduct
45
45
 
46
- Everyone interacting in the Anagram_Algo project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/4rlm/anagram_algo/blob/master/CODE_OF_CONDUCT.md).
46
+ Everyone interacting in the AnagramAlgo project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/4rlm/anagram_algo/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile CHANGED
@@ -27,7 +27,7 @@ end
27
27
 
28
28
  def run_sudoku
29
29
  binding.pry
30
- solve = Anagram_Algo::Solver.new
30
+ solve = AnagramAlgo::Solver.new
31
31
  res = solve.start
32
32
  binding.pry
33
33
 
data/anagram_algo.gemspec CHANGED
@@ -5,7 +5,7 @@ require "anagram_algo/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "anagram_algo"
8
- spec.version = Anagram_Algo::VERSION
8
+ spec.version = AnagramAlgo::VERSION
9
9
  spec.authors = ["Adam Booth"]
10
10
  spec.email = ["4rlm@protonmail.ch"]
11
11
 
data/lib/anagram_algo.rb CHANGED
@@ -5,6 +5,6 @@ require "anagram_algo/solver"
5
5
  # require 'scrub_db'
6
6
  require 'pry'
7
7
 
8
- module Anagram_Algo
8
+ module AnagramAlgo
9
9
  # Your code goes here...
10
10
  end
@@ -1,5 +1,5 @@
1
1
 
2
- module Anagram_Algo
2
+ module AnagramAlgo
3
3
  class Solver
4
4
 
5
5
  def initialize
@@ -1,3 +1,3 @@
1
- module Anagram_Algo
2
- VERSION = "1.01"
1
+ module AnagramAlgo
2
+ VERSION = "1.02"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anagram_algo
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.01'
4
+ version: '1.02'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Booth