sti_type_customizable 0.1.0 → 0.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45485abd7bafa7bef855480ab9d3f728b8f8e9fa
4
- data.tar.gz: 1d47883bb73866af6c9d45ea386226ee8dae16ff
3
+ metadata.gz: 0d5e8b38a94d15e5cf3697a1b2c7a62d8b6cbf34
4
+ data.tar.gz: 2dd01a8b5bdb5b729b1ea218a913addc35d65311
5
5
  SHA512:
6
- metadata.gz: ef43bde7cb81db98242c9d1291cc410dec0d87cc042b943b37337d15a79c12d33e088918d7cbcafb3945d8afcde555f4cd1ffa7bf0d0992788cab89dc0e6b70b
7
- data.tar.gz: 17d1dbaede9323a056c82752c37ca9f07a85ae3c133046ef178b697f6984d37a885262db2232ce2178f0da0f03fe3488ec096f2c5c028ac9e976027a3eb58ffe
6
+ metadata.gz: dd862359678ccea92a0da976e7e306f6edf97156a50af53731aab42e7190ca3af1abc1135e53c4faf6313a2ee4c7aaede0d92344cd2fc906c3a936e908bf8bd4
7
+ data.tar.gz: 1dec2dfd0ca42ac98c585491b91343fc6db5d5f753d5addc1dc810ee17a102ac9c48ec7b58f3997186aba0c1e6bda1c211fb56ddc840cbd6a1d3b6c23bc01925
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Takahiro Ooishi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # StiTypeCustomizable
2
2
 
3
- 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/sti_type_customizable`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Customize STI type column.
6
4
 
7
5
  ## Installation
8
6
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module StiTypeCustomizable
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Customize STI type column}
13
13
  spec.description = %q{Customize STI type column}
14
14
  spec.homepage = "https://github.com/sti_type_customizable"
15
+ spec.license = "MIT"
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
18
  spec.bindir = "exe"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sti_type_customizable
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
@@ -77,6 +77,7 @@ files:
77
77
  - ".rspec"
78
78
  - ".travis.yml"
79
79
  - Gemfile
80
+ - LICENSE
80
81
  - README.md
81
82
  - Rakefile
82
83
  - bin/console
@@ -85,7 +86,8 @@ files:
85
86
  - lib/sti_type_customizable/version.rb
86
87
  - sti_type_customizable.gemspec
87
88
  homepage: https://github.com/sti_type_customizable
88
- licenses: []
89
+ licenses:
90
+ - MIT
89
91
  metadata: {}
90
92
  post_install_message:
91
93
  rdoc_options: []