parameter_normalizer 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d07ff233a093a1141aaf3030dc21cb66e4aa91148555ba5f26c1f98f140487fe
4
- data.tar.gz: 45432ed88870f637720a5248e3b3eae540593c28456745ddb6813249665d73ea
3
+ metadata.gz: ed6daec021aaea738b093569582d220ca208c37750b03d819554885dca34876e
4
+ data.tar.gz: 1411c6eebb922adcac2cd7406c2a36b69b0f222cc50defd17fbe94dd1b0532c9
5
5
  SHA512:
6
- metadata.gz: 594b7fc96c126223af7fc78b03bb05f8b8eb7785c615b2d600e822438b87df4031deabff37038b268b9af027f390768c4cfb51843d2959b21ba0de45cec3d390
7
- data.tar.gz: 42e5d03971318c33d18699bb7d642c6121c6b96ad84579d456740353f67dd170f503d990b46ad7c2dfd13db49f74f09ed05f3c46bc48bbbd7f965ca9866ca6e7
6
+ metadata.gz: 051fb3063c3c2002ac1f402e06ab281816f7c6a3b4daea4232a4d1b5bb00cc5b675ecb3b6a817bd8372dcb0a9d2cc1df2ea44c553b8bbb1e7d7d842655c57ea0
7
+ data.tar.gz: 608b0e876cdbb4fb21c5a239d2495372ed85d70440d335c002e4b6bccc341bd89ddebb8e0d2caf2a5d88bf26d5adc00c9ca702574e3428bf485ce00d44a4150f
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ParameterNormalizer
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parameter_normalizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiro Ooishi
@@ -59,7 +59,6 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - README.md
63
62
  - lib/parameter_normalizer.rb
64
63
  - lib/parameter_normalizer/controller_concerns/normalizable.rb
65
64
  - lib/parameter_normalizer/normalizer.rb
data/README.md DELETED
@@ -1,33 +0,0 @@
1
- # ParameterNormalizer
2
-
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/parameter_normalizer`. To experiment with that code, run `bin/console` for an interactive prompt.
6
-
7
- ## Installation
8
-
9
- Install the gem and add to the application's Gemfile by executing:
10
-
11
- $ bundle add parameter_normalizer
12
-
13
- If bundler is not being used to manage dependencies, install the gem by executing:
14
-
15
- $ gem install parameter_normalizer
16
-
17
- ## Usage
18
-
19
- TODO: Write usage instructions here
20
-
21
- ## Development
22
-
23
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
-
25
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
-
27
- ## Contributing
28
-
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/taka0125/parameter_normalizer.
30
-
31
- ## License
32
-
33
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).