ruzai 0.0.1 → 0.0.2

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: 36e5d4e5b242dee4e48f9e9c821054941f5bebe4
4
- data.tar.gz: 1c5298ff0b5cba8b746688aa4657be0a15c8327d
3
+ metadata.gz: b63b91ac1e789ecfe3d8117d191593ff93af8e32
4
+ data.tar.gz: 3c37a5d7fdfdbaa6b92fe2c64804bc8ee9040180
5
5
  SHA512:
6
- metadata.gz: 9a017fda5bd19a31886430f6b4a0b23079107846a66657079ecd4b4b84521ec0def8c091ab2e810d4f7f3112310399f4608166a19ec4d2f23d156117f62f7999
7
- data.tar.gz: 3b96684096a2f5292ba8c6af7e25cad7ba858434cee9b64f36efedd57c46a84f335fc74bd8b5eea7bd5dd3603c93f390cc1b133dc69107dc8d03e6a988f91001
6
+ metadata.gz: 1b124f2c4a94ae75166cf9d5decb428f0d4c24ee591cef413ff8b8355106feea1a5436a37b99b90e08b86c2a9ac2388b2df43e343d1cba1a6f2431e68c3e30d7
7
+ data.tar.gz: ea5625deb2a5076bc4453b4c8c691cf2e8be2f12d256a36e21914683a76b8f55f9e9d3526434938ca80617afc4690d10dd548f271c35229179966fd9e8fcae7f
data/.travis.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 2.1.6
3
4
  - 2.2.2
4
5
  before_install: gem install bundler -v 1.10.2
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Ruzai
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/user_ban`. 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
+ [![Build Status](https://travis-ci.org/ryonext/ruzai.svg?branch=master)](https://travis-ci.org/ryonext/ruzai)
6
4
 
7
5
  ## Installation
8
6
 
@@ -0,0 +1,12 @@
1
+ require "active_support"
2
+ require "active_support/core_ext"
3
+
4
+ module Ruzai
5
+ include ActiveSupport::Configurable
6
+ config_accessor :suspention_duration, :respawn_limit
7
+
8
+ self.configure do |config|
9
+ config.suspention_duration = 2.weeks
10
+ config.respawn_limit = 5
11
+ end
12
+ end
@@ -0,0 +1,41 @@
1
+ require "ruzai/version"
2
+ require "active_record"
3
+
4
+ module Ruzai
5
+ attr_accessor :suspention_expired_at, :suspended_count
6
+ def suspended?
7
+ return true if (self.suspended_count || 0) > Ruzai.respawn_limit
8
+ return false unless suspention_expired_at
9
+ self.suspention_expired_at > Time.now
10
+ end
11
+
12
+ def suspended_until
13
+ return nil unless suspention_expired_at
14
+ remains = (self.suspention_expired_at - Time.now).to_i
15
+
16
+ # If time remains between 1 second ~ 23 hours 59 seconds, it displays '1 day'
17
+ (( remains / 1.day ) + 1 ).day
18
+ end
19
+
20
+ def suspend!
21
+ self.suspended_count ||=0
22
+ self.suspended_count += 1
23
+ self.suspention_expired_at = Ruzai.suspention_duration.from_now
24
+ self.save!
25
+ end
26
+
27
+ def ban!
28
+ self.suspended_count = Ruzai.respawn_limit + 1
29
+ self.save!
30
+ end
31
+
32
+ def remove_suspention!
33
+ self.suspention_expired_at = nil
34
+ self.save!
35
+ end
36
+
37
+ def suspended_before?
38
+ return false unless self.suspention_expired_at
39
+ self.suspention_expired_at < Time.now
40
+ end
41
+ end
data/lib/ruzai/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ruzai
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/ruzai.rb CHANGED
@@ -1,41 +1,3 @@
1
1
  require "ruzai/version"
2
- require "active_support"
3
- require "active_support/core_ext"
4
- require "active_record"
5
-
6
- module Ruzai
7
- attr_accessor :suspention_expired_at, :suspended_count
8
- include ActiveSupport::Configurable
9
- config_accessor :suspention_duration, :respawn_limit
10
-
11
- self.configure do |config|
12
- config.suspention_duration = 2.weeks
13
- config.respawn_limit = 5
14
- end
15
-
16
- def suspended?
17
- return true if (self.suspended_count || 0) > Ruzai.respawn_limit
18
- return false unless suspention_expired_at
19
- self.suspention_expired_at > Time.now
20
- end
21
-
22
- def suspended_until
23
- return nil unless suspention_expired_at
24
- remains = (self.suspention_expired_at - Time.now).to_i
25
-
26
- # If time remains between 1 second ~ 23 hours 59 seconds, it displays '1 day'
27
- (( remains / 1.day ) + 1 ).day
28
- end
29
-
30
- def suspend!
31
- self.suspended_count ||=0
32
- self.suspended_count += 1
33
- self.suspention_expired_at = Ruzai.suspention_duration.from_now
34
- self.save!
35
- end
36
-
37
- def ban!
38
- self.suspended_count = Ruzai.respawn_limit + 1
39
- self.save!
40
- end
41
- end
2
+ require "ruzai/configurable"
3
+ require "ruzai/suspender"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruzai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ryonext
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-07-30 00:00:00.000000000 Z
11
+ date: 2015-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -135,6 +135,8 @@ files:
135
135
  - lib/generators/ruzai/install_generator.rb
136
136
  - lib/generators/ruzai/templates/ruzai_parameters.rb
137
137
  - lib/ruzai.rb
138
+ - lib/ruzai/configurable.rb
139
+ - lib/ruzai/suspender.rb
138
140
  - lib/ruzai/version.rb
139
141
  - ruzai.gemspec
140
142
  homepage: https://github.com/ryonext/ruzai