string-present-blank 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9c54dc63b6d988034eb97bee826c13867c580f96
4
+ data.tar.gz: 6380e3bb0cf1b5a6a8b21265f14c30cde720edbd
5
+ SHA512:
6
+ metadata.gz: bda4bb1a3aa7edae1436580dccb0d8ffbfbde0dc6219f125311d3bba8c1cdd23f3c8a786ddfe9f723fa9846d0ce258f80aee58a03c373e3d84f7acb3d6d53cb4
7
+ data.tar.gz: 65a068559e21f7da8223167d8c14a2a80671cf0cd9910e1cbeab3145e42499b5cd8b73bfb95c453796286f4221f39312e14a7f96a26af40aa82096b29a21112f
@@ -0,0 +1,34 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ # Gemfile.lock
30
+ # .ruby-version
31
+ # .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in string-present-blank.gemspec
4
+ gemspec
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ string-present-blank (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (5.4.1)
10
+ rake (10.3.2)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.6)
17
+ minitest
18
+ rake
19
+ string-present-blank!
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Takashi Chiba
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ # String#present/blank
2
+
3
+ This gem provides String#present and String#blank.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'string-present-blank'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install string-present-blank
18
+
19
+ ## Usage
20
+
21
+ ```ruby
22
+ # before
23
+
24
+ 'abc' + 'efg' #=> 'abcefg'
25
+
26
+ 'abc' + 'efg' if false #=> nil
27
+ 'abc' + ('efg' if false) #=> TypeError: no implicit conversion of nil into String
28
+ 'abc' + if false then 'efg' else '' end #=> 'abc'
29
+
30
+ # after
31
+
32
+ 'abc' + 'efg'.blank(if: false) #=> 'abc'
33
+ 'abc' + 'efg'.present(unless: false) #=> 'abc'
34
+
35
+ ```
36
+
37
+ ## Contributing
38
+
39
+ 1. Fork it ( https://github.com/[my-github-username]/string-present-blank/fork )
40
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
41
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
42
+ 4. Push to the branch (`git push origin my-new-feature`)
43
+ 5. Create a new Pull Request
@@ -0,0 +1,12 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'test'
6
+ t.libs << '.'
7
+ t.test_files = FileList['test/test*.rb']
8
+ t.verbose = true
9
+ t.warning = true
10
+ end
11
+
12
+ task :default => :test
@@ -0,0 +1,3 @@
1
+ require 'string-present-blank/string'
2
+
3
+ String.include(StringPresentBlank::String)
@@ -0,0 +1,21 @@
1
+ module StringPresentBlank
2
+ module String
3
+ def present(conditions={})
4
+ if_condition = conditions.delete(:if)
5
+ if_condition = true if if_condition.nil?
6
+
7
+ unless_condition = conditions.delete(:unless)
8
+ unless_condition = false if unless_condition.nil?
9
+
10
+ if if_condition and not unless_condition
11
+ self
12
+ else
13
+ ''
14
+ end
15
+ end
16
+
17
+ def blank(conditions={})
18
+ present(conditions) == self ? '' : self
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,3 @@
1
+ module StringPresentBlank
2
+ VERSION = '0.0.1'.freeze
3
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'string-present-blank/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'string-present-blank'
8
+ spec.version = StringPresentBlank::VERSION
9
+ spec.authors = ['Takashi Chiba']
10
+ spec.email = ['contact@takashi.me']
11
+ spec.summary = %q{Provides String#present and String#blank.}
12
+ spec.homepage = 'http://takashi.me'
13
+ spec.license = 'MIT'
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_development_dependency 'bundler', '~> 1.6'
21
+ spec.add_development_dependency 'rake', '~> 0'
22
+ spec.add_development_dependency 'minitest', '~> 0'
23
+ end
@@ -0,0 +1,22 @@
1
+ require 'minitest/autorun'
2
+ require 'string-present-blank'
3
+
4
+ class TestString < MiniTest::Unit::TestCase
5
+ def test_present
6
+ assert_equal 'hogehoge', 'hogehoge'.present
7
+ assert_equal 'hogehoge', 'hogehoge'.present(if: true)
8
+ assert_equal 'hogehoge', 'hogehoge'.present(unless: false)
9
+
10
+ assert_equal '', 'hogehoge'.present(if: false)
11
+ assert_equal '', 'hogehoge'.present(unless: true)
12
+ end
13
+
14
+ def test_blank
15
+ assert_equal '', 'hogehoge'.blank
16
+ assert_equal '', 'hogehoge'.blank(if: true)
17
+ assert_equal '', 'hogehoge'.blank(unless: false)
18
+
19
+ assert_equal 'hogehoge', 'hogehoge'.blank(if: false)
20
+ assert_equal 'hogehoge', 'hogehoge'.blank(unless: true)
21
+ end
22
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: string-present-blank
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Takashi Chiba
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - contact@takashi.me
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - Gemfile.lock
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - lib/string-present-blank.rb
69
+ - lib/string-present-blank/string.rb
70
+ - lib/string-present-blank/version.rb
71
+ - string-present-blank.gemspec
72
+ - test/test_string.rb
73
+ homepage: http://takashi.me
74
+ licenses:
75
+ - MIT
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.2.2
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Provides String#present and String#blank.
97
+ test_files:
98
+ - test/test_string.rb
99
+ has_rdoc: