lockdown 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.1.4 2008-04-25
2
+ * Uncommented line in config/hoe.rb to hopefully resolved rubigen dependency issue.
3
+
1
4
  == 0.1.3 2008-04-25
2
5
  * Still Don't have correct dependencies. Added in first crack at lockdown_all generator.
3
6
 
data/config/hoe.rb CHANGED
@@ -13,7 +13,7 @@ EXTRA_DEPENDENCIES = [
13
13
 
14
14
  @config_file = "~/.rubyforge/user-config.yml"
15
15
  @config = nil
16
- RUBYFORGE_USERNAME = "unknown"
16
+ RUBYFORGE_USERNAME = 'astone'
17
17
  def rubyforge_username
18
18
  unless @config
19
19
  begin
@@ -61,7 +61,7 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
61
61
 
62
62
  # == Optional
63
63
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
64
- #p.extra_deps = EXTRA_DEPENDENCIES
64
+ p.extra_deps = EXTRA_DEPENDENCIES
65
65
 
66
66
  #p.spec_extras = {} # A hash of extra values to set in the gemspec.
67
67
  end
@@ -2,7 +2,7 @@ module Lockdown #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,3 +1,5 @@
1
+ require "rubigen"
2
+
1
3
  class LockdownAllGenerator < RubiGen::Base
2
4
 
3
5
  default_options :author => nil
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>lockdown</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.1.3</a>
36
+ <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.1.4</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;lockdown&#8217;</h1>
39
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lockdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Stone
@@ -11,8 +11,16 @@ cert_chain: []
11
11
 
12
12
  date: 2008-04-25 00:00:00 -04:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rubigen
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.2.4
23
+ version:
16
24
  description: Authorization/Authentication system for RubyOnRails and Merb
17
25
  email:
18
26
  - andrew.n.stone@gmail.com