forgery 0.3.11 → 0.3.12

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -40,7 +40,7 @@ desc %q{
40
40
  Create a dictionary file from web content (xml or html).
41
41
  Writes to the directory specified by Forgery::FileWriter#write_to!
42
42
  '${GEM_HOME}/lib/forgery/dictionaries' by default (standalone)
43
- '${RAILS_ROOT}/lib/forgery/dictionaries' by default (as a Rails 3 plugin)
43
+ '${Rails.root}/lib/forgery/dictionaries' by default (as a Rails 3 plugin)
44
44
 
45
45
  Parameters:
46
46
  :dictionary_name -- the name of your new dictionary file
@@ -4,7 +4,7 @@ class String
4
4
  end
5
5
 
6
6
  # Ripped right out of rails
7
- if !defined?(RAILS_ROOT)
7
+ if !defined?(Rails.root)
8
8
  def camelize(first_letter = :upper)
9
9
  case first_letter
10
10
  when :upper
@@ -46,4 +46,4 @@ class String
46
46
  end
47
47
  end
48
48
  end
49
- end
49
+ end
@@ -86,20 +86,21 @@ class Forgery::Basic < Forgery
86
86
  end
87
87
 
88
88
  def self.text(options={})
89
- options = {:at_least => 10,
90
- :at_most => 15,
91
- :allow_lower => true,
92
- :allow_upper => true,
89
+ options = {:at_least => 10,
90
+ :at_most => 15,
91
+ :allow_lower => true,
92
+ :allow_upper => true,
93
93
  :allow_numeric => true,
94
- :allow_special => false}.merge!(options)
94
+ :allow_special => false,
95
+ :exactly => nil}.merge!(options)
95
96
 
96
97
  allowed_characters = []
97
98
  allowed_characters += LOWER_ALPHA if options[:allow_lower]
98
99
  allowed_characters += UPPER_ALPHA if options[:allow_upper]
99
100
  allowed_characters += NUMERIC if options[:allow_numeric]
100
101
  allowed_characters += SPECIAL_CHARACTERS if options[:allow_special]
101
-
102
- length = (options[:at_least]..options[:at_most]).random
102
+
103
+ length = options[:exactly] || (options[:at_least]..options[:at_most]).random
103
104
 
104
105
  allowed_characters.random_subset(length).join
105
106
  end
@@ -1,5 +1,6 @@
1
1
  require 'forgery'
2
2
  require 'rails'
3
+ require 'rake'
3
4
 
4
5
  class ForgeryRailtie < Rails::Railtie
5
6
  extend Rake::DSL
@@ -14,7 +15,7 @@ class ForgeryRailtie < Rails::Railtie
14
15
  Create a dictionary file from web content (xml or html).
15
16
  Writes to the directory specified by Forgery::FileWriter#write_to!
16
17
  '${GEM_HOME}/lib/forgery/dictionaries' by default (standalone)
17
- '${RAILS_ROOT}/lib/forgery/dictionaries' by default (as a Rails 3 plugin)
18
+ '${Rails.root}/lib/forgery/dictionaries' by default (as a Rails 3 plugin)
18
19
 
19
20
  Parameters:
20
21
  :dictionary_name -- the name of your new dictionary file
@@ -1,3 +1,3 @@
1
1
  class Forgery
2
- VERSION = "0.3.11"
2
+ VERSION = "0.3.12"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forgery
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 11
10
- version: 0.3.11
9
+ - 12
10
+ version: 0.3.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - Nathan Sutton
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-07-14 00:00:00 -07:00
19
+ date: 2011-07-18 00:00:00 -07:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  requirements: []
154
154
 
155
155
  rubyforge_project: forgery
156
- rubygems_version: 1.3.8
156
+ rubygems_version: 1.5.0
157
157
  signing_key:
158
158
  specification_version: 3
159
159
  summary: Easy and customizable generation of forged data.