sep 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/{LICENSE.txt → LICENSE} +0 -0
- data/README.md +4 -0
- data/lib/sep/version.rb +1 -1
- data/sep.gemspec +3 -2
- metadata +6 -5
data/{LICENSE.txt → LICENSE}
RENAMED
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.
|
data/lib/sep/version.rb
CHANGED
data/sep.gemspec
CHANGED
@@ -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
|
12
|
-
gem.summary = %q{
|
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.
|
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
|
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
|
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:
|
91
|
+
summary: String separator
|
91
92
|
test_files:
|
92
93
|
- spec/sep_spec.rb
|
93
94
|
- spec/separator_spec.rb
|