This website works better with JavaScript
Home
Explore
Help
Sign In
SMusatov
/
zammad
mirror of
https://github.com/zammad/zammad.git
Watch
1
Star
0
Fork
0
Files
Tree:
88feeb38ba
Branches
Tags
develop
develop-mh/donot-reset-DB_PASS
develop-ruby-336
interface
interface-v1
interface-v2
rolfschmidt-develop-patch-04572
stable
stable-1.0
stable-1.1
stable-1.2
stable-1.3
stable-1.4
stable-1.5
stable-2.0
stable-2.1
stable-2.2
stable-2.3
stable-2.4
stable-2.5
stable-2.6
stable-2.7
stable-2.8
stable-2.9
stable-3.0
stable-3.1
stable-3.2
stable-3.3
stable-3.4
stable-3.5
stable-3.6
stable-4.0
stable-4.1
stable-5.0
stable-5.1
stable-5.2
stable-5.3
stable-5.4
stable-6.0
stable-6.1
stable-6.2
stable-6.3
stable-backport-issue-5384
6.6.0-alpha
6.4.1
6.4.0
6.5.0-alpha
6.3.1
6.3.0
6.4.0-alpha
6.2.0
6.3.0-alpha
6.2.0-alpha
6.1.0
6.0.0
6.1.0-alpha
6.0.0-alpha
5.4.1
5.5.0-alpha
5.4.0
5.3.1
5.3.0
5.4.0-alpha
5.2.3
5.2.2
5.2.1
5.3.0-alpha
5.2.0
5.1.1
5.2.0-alpha
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
4.1.1
4.1.0
4.0.1
4.0.0
3.6.1
3.7.0
3.6.0
3.5.1
3.4.1
3.5.0
3.3.1
3.4.0
3.3.0
3.2.1
3.2.0
3.1.1
3.1.0
3.0.1
3.0.0
2.7.2
2.10.0
2.9.0
2.8.1
2.7.1
2.8.0
2.7.0
2.6.1
2.6.0
2.5.1
2.5.0
2.4.1
2.4.0
2.3.1
2.2.2
2.3.0
2.1.2
2.2.1
2.2.0
2.1.1
2.1.0
2.0.1
1.5.1
2.0.0
1.6.1
1.2.3
1.3.2
1.4.1
1.6.0
1.5.0
1.4.0
1.3.1
1.2.2
1.1.4
1.3.0
1.2.1
1.1.3
1.0.4
1.2.0
1.1.2
1.0.3
1.1.1
1.0.2
1.1.0
1.0.1
1.0.0
zammad
/
lib
/
core_ext
/
integer.rb
integer.rb
101 B
History
Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Integer
=begin
result = 5.empty?
result
false
=end
def empty?
false
end
end