kienaide 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cbc5ac36f03e02982ebca9f5959ebb2271acfde1
4
+ data.tar.gz: 55059916838073397a1e5e3ca246568a5a2f9bfb
5
+ SHA512:
6
+ metadata.gz: 38a342441197494d64c03f132f161f889e9b587f72c100c0a7b64da4a28c62ee6aa13b896a0e6005ece43489e5a72cdcf5920947468af39fdba2089df6dd6dd4
7
+ data.tar.gz: 82f2136016ca5c4b9647020ff633f1413f5baa09b6228b40c8cc75dab32762d12bfedd63e9ea77543c7b757e7e8b66e7f080db56afde2fe956fab51957a9c7ec
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in kienaide.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 koshikawa
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.
data/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # Kienaide
2
+
3
+ Protect your record.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'kienaide'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install kienaide
20
+
21
+ ## Usage
22
+
23
+ Add protected boolean column.
24
+
25
+ ```
26
+ class AddProtectedToPost< ActiveRecord::Migration
27
+ def change
28
+ change_column :posts, :protected, :boolean, null: false, default: false
29
+ end
30
+ end
31
+ ```
32
+
33
+ Add 'kienaide' to your class.
34
+
35
+ ```
36
+ class Post < ActiveRecord::Base
37
+ kienaide
38
+ end
39
+ ```
40
+
41
+ ```
42
+ post.protected = true
43
+ post.save
44
+
45
+ post.destroy
46
+ post.destroyed? # false
47
+ ```
48
+
49
+ ## Contributing
50
+
51
+ 1. Fork it ( https://github.com/[my-github-username]/kienaide/fork )
52
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
53
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
54
+ 4. Push to the branch (`git push origin my-new-feature`)
55
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/kienaide.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'kienaide/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "kienaide"
8
+ spec.version = Kienaide::VERSION
9
+ spec.authors = ["koshikawa"]
10
+ spec.email = ["koshikawa@ppworks.jp"]
11
+ spec.summary = %q{Protect your record}
12
+ spec.description = %q{Protect your record easily}
13
+ spec.homepage = "http://github.com/ppworks/kienaide"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "activerecord", ["> 3.0", "< 5.0"]
22
+ spec.add_development_dependency "rspec", "~> 3.0"
23
+ spec.add_development_dependency "sqlite3", "~> 1.0"
24
+ spec.add_development_dependency "bundler", "~> 1.7"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ end
data/lib/kienaide.rb ADDED
@@ -0,0 +1,14 @@
1
+ require "kienaide/version"
2
+ require "active_record"
3
+
4
+ module Kienaide
5
+ def kienaide
6
+ class_eval do
7
+ before_destroy do
8
+ false if self.protected
9
+ end
10
+ end
11
+ end
12
+ end
13
+
14
+ ActiveRecord::Base.extend Kienaide
@@ -0,0 +1,3 @@
1
+ module Kienaide
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ class Post < ActiveRecord::Base
4
+ kienaide
5
+ end
6
+
7
+ RSpec.describe Kienaide do
8
+ let!(:post) { Post.create(content: 'demo', protected: protected) }
9
+ after { Post.delete_all }
10
+
11
+ describe 'kinaide' do
12
+ before { post.destroy }
13
+ subject { post.destroyed? }
14
+ context 'when not be protected' do
15
+ let(:protected) { false }
16
+ it { is_expected.to be true }
17
+ end
18
+
19
+ context 'when be protected' do
20
+ let(:protected) { true }
21
+ it { is_expected.to be false }
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,6 @@
1
+ require 'bundler/setup'
2
+ Bundler.require
3
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
4
+
5
+ RSpec.configure do
6
+ end
@@ -0,0 +1,14 @@
1
+ ActiveRecord::Base.configurations = {'test' => {:adapter => 'sqlite3', :database => ':memory:'}}
2
+ ActiveRecord::Base.establish_connection :test
3
+
4
+ class CreateAllTables < ActiveRecord::Migration
5
+ def self.up
6
+ create_table(:posts) do |t|
7
+ t.text :content
8
+ t.boolean :protected
9
+ end
10
+ end
11
+ end
12
+
13
+ ActiveRecord::Migration.verbose = false
14
+ CreateAllTables.up
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kienaide
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - koshikawa
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-02-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activerecord
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">"
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: sqlite3
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: bundler
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.7'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.7'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rake
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '10.0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '10.0'
89
+ description: Protect your record easily
90
+ email:
91
+ - koshikawa@ppworks.jp
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - ".gitignore"
97
+ - Gemfile
98
+ - LICENSE.txt
99
+ - README.md
100
+ - Rakefile
101
+ - kienaide.gemspec
102
+ - lib/kienaide.rb
103
+ - lib/kienaide/version.rb
104
+ - spec/kienaide_spec.rb
105
+ - spec/spec_helper.rb
106
+ - spec/support/setup_database.rb
107
+ homepage: http://github.com/ppworks/kienaide
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.2.2
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: Protect your record
131
+ test_files:
132
+ - spec/kienaide_spec.rb
133
+ - spec/spec_helper.rb
134
+ - spec/support/setup_database.rb