sep 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
File without changes
data/README.md CHANGED
@@ -50,3 +50,7 @@ sep.space #=> [" ", " ", " ", " ", " ", " ", " ", " ", ""]
50
50
  3. Commit your changes (`git commit -am 'Add some feature'`)
51
51
  4. Push to the branch (`git push origin my-new-feature`)
52
52
  5. Create new Pull Request
53
+
54
+ ## Copyright
55
+
56
+ Copyright (c) 2013 Dan Richert. See LICENSE for details.
@@ -1,3 +1,3 @@
1
1
  module Sep
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -8,9 +8,10 @@ Gem::Specification.new do |gem|
8
8
  gem.version = Sep::VERSION
9
9
  gem.authors = ["Dan Richert"]
10
10
  gem.email = ["dan.richert@gmail.com"]
11
- gem.description = %q{Separates strings and puts them back together}
12
- gem.summary = %q{Separate and reassemble strings based on whitespace}
11
+ gem.description = %q{Separates strings, parses punctuation and spacing}
12
+ gem.summary = %q{String separator}
13
13
  gem.homepage = "https://github.com/drichert/sep"
14
+ gem.license = "MIT"
14
15
 
15
16
  gem.add_dependency("rake")
16
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -43,7 +43,7 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
- description: Separates strings and puts them back together
46
+ description: Separates strings, parses punctuation and spacing
47
47
  email:
48
48
  - dan.richert@gmail.com
49
49
  executables: []
@@ -53,7 +53,7 @@ files:
53
53
  - .gitignore
54
54
  - .travis.yml
55
55
  - Gemfile
56
- - LICENSE.txt
56
+ - LICENSE
57
57
  - README.md
58
58
  - Rakefile
59
59
  - lib/sep.rb
@@ -65,7 +65,8 @@ files:
65
65
  - spec/spec_helper.rb
66
66
  - spec/support/text
67
67
  homepage: https://github.com/drichert/sep
68
- licenses: []
68
+ licenses:
69
+ - MIT
69
70
  post_install_message:
70
71
  rdoc_options: []
71
72
  require_paths:
@@ -87,7 +88,7 @@ rubyforge_project:
87
88
  rubygems_version: 1.8.23
88
89
  signing_key:
89
90
  specification_version: 3
90
- summary: Separate and reassemble strings based on whitespace
91
+ summary: String separator
91
92
  test_files:
92
93
  - spec/sep_spec.rb
93
94
  - spec/separator_spec.rb