bad_words 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bad_words.gemspec +1 -1
  2. data/lib/version.rb +8 -0
  3. metadata +4 -3
data/bad_words.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "bad_words"
3
- s.version = "0.1.0"
3
+ s.version = "0.1.1"
4
4
  s.description = "A simple gem to clean string of bad words!"
5
5
  s.summary = "Bad Words"
6
6
  s.author = "Alessandro Neri"
data/lib/version.rb ADDED
@@ -0,0 +1,8 @@
1
+ module BadWords
2
+ module Version
3
+ MAJOR = 0
4
+ MINOR = 1
5
+ PATCH = 0
6
+ STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
+ end
8
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bad_words
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alessandro Neri
@@ -29,6 +29,7 @@ extra_rdoc_files: []
29
29
 
30
30
  files:
31
31
  - lib/bad_words.rb
32
+ - lib/version.rb
32
33
  - test/bad_words_test.rb
33
34
  - Rakefile
34
35
  - bad_words.gemspec