radiusrb 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -24,7 +24,7 @@ RadiusRB is derived from from PJ Davis's Radiustar library (https://github.com/p
24
24
 
25
25
  == Bundler
26
26
 
27
- gem "radiusrb", "~> 1.0.0"
27
+ gem "radiusrb", "~> 1.0.2"
28
28
 
29
29
  = Usage
30
30
 
@@ -67,17 +67,7 @@ RadiusRB is derived from from PJ Davis's Radiustar library (https://github.com/p
67
67
 
68
68
  end
69
69
 
70
- == Contributing to RadiusRB
71
-
72
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
73
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
74
- * Fork the project
75
- * Start a feature/bugfix branch
76
- * Commit and push until you are happy with your contribution
77
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
78
-
79
- == Copyright
70
+ = Copyright
80
71
 
81
72
  Copyright (c) 2011 Davide Guerri <davide.guerri@gmail.com>.
82
73
  See LICENSE.txt for further details.
83
-
data/lib/radiusrb.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -1,5 +1,5 @@
1
1
  # This file is part of the RadiusRB library for Ruby.
2
- # Copyright (C) 2011 Davide Guerri <davide.guerri@gmail.com>
2
+ # Copyright (C) 2012 Davide Guerri <davide.guerri@gmail.com>
3
3
  #
4
4
  # This program is free software; you can redistribute it and/or
5
5
  # modify it under the terms of the GNU General Public License
@@ -19,7 +19,7 @@ module RadiusRB
19
19
  module Version
20
20
  MAJOR = 1
21
21
  MINOR = 0
22
- PATCH = 1
22
+ PATCH = 2
23
23
  BUILD = nil
24
24
 
25
25
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
data/radiusrb.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "radiusrb"
8
- s.version = "1.0.1"
8
+ s.version = "1.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Davide Guerri"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiusrb
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Davide Guerri