lockdown 0.1.1 → 0.1.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.
- data/config/hoe.rb +5 -4
- data/lib/lockdown/version.rb +1 -1
- data/test/test_lockdown_all_generator.rb +43 -0
- data/test/test_lockdown_models_generator.rb +43 -0
- data/website/index.html +1 -1
- metadata +8 -6
data/config/hoe.rb
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
require 'lockdown/version'
|
|
2
2
|
|
|
3
|
-
AUTHOR = '
|
|
4
|
-
EMAIL = "
|
|
5
|
-
DESCRIPTION = "
|
|
3
|
+
AUTHOR = 'Andrew Stone' # can also be an array of Authors
|
|
4
|
+
EMAIL = "andrew.n.stone@gmail.com"
|
|
5
|
+
DESCRIPTION = "Authorization/Authentication system for RubyOnRails and Merb"
|
|
6
6
|
GEM_NAME = 'lockdown' # what ppl will type to install your gem
|
|
7
7
|
RUBYFORGE_PROJECT = 'lockdown' # The unix name for your project
|
|
8
8
|
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
|
|
9
9
|
DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
|
|
10
10
|
EXTRA_DEPENDENCIES = [
|
|
11
|
+
['rubigen', '>=1.2.4']
|
|
11
12
|
# ['activesupport', '>= 1.3.1']
|
|
12
13
|
] # An array of rubygem dependencies [name, version]
|
|
13
14
|
|
|
@@ -70,4 +71,4 @@ CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
|
|
|
70
71
|
PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}"
|
|
71
72
|
$hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc')
|
|
72
73
|
$hoe.rsync_args = '-av --delete --ignore-errors'
|
|
73
|
-
$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
|
|
74
|
+
$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
|
data/lib/lockdown/version.rb
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
class TestLockdownAllGenerator < Test::Unit::TestCase
|
|
4
|
+
include RubiGen::GeneratorTestHelper
|
|
5
|
+
|
|
6
|
+
def setup
|
|
7
|
+
bare_setup
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def teardown
|
|
11
|
+
bare_teardown
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
# Some generator-related assertions:
|
|
15
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
16
|
+
# assert_directory_exists(name)
|
|
17
|
+
# assert_generated_class(name, &block)
|
|
18
|
+
# assert_generated_module(name, &block)
|
|
19
|
+
# assert_generated_test_for(name, &block)
|
|
20
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
21
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
22
|
+
#
|
|
23
|
+
# Other helper methods are:
|
|
24
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
25
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
26
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
27
|
+
|
|
28
|
+
def test_generator_without_options
|
|
29
|
+
name = "myapp"
|
|
30
|
+
run_generator('lockdown_all', [name], sources)
|
|
31
|
+
assert_generated_file("some_file")
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
private
|
|
35
|
+
def sources
|
|
36
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
37
|
+
]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def generator_path
|
|
41
|
+
"rails_generators"
|
|
42
|
+
end
|
|
43
|
+
end
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
class TestLockdownModelsGenerator < Test::Unit::TestCase
|
|
4
|
+
include RubiGen::GeneratorTestHelper
|
|
5
|
+
|
|
6
|
+
def setup
|
|
7
|
+
bare_setup
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def teardown
|
|
11
|
+
bare_teardown
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
# Some generator-related assertions:
|
|
15
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
16
|
+
# assert_directory_exists(name)
|
|
17
|
+
# assert_generated_class(name, &block)
|
|
18
|
+
# assert_generated_module(name, &block)
|
|
19
|
+
# assert_generated_test_for(name, &block)
|
|
20
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
21
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
22
|
+
#
|
|
23
|
+
# Other helper methods are:
|
|
24
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
25
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
26
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
27
|
+
|
|
28
|
+
def test_generator_without_options
|
|
29
|
+
name = "myapp"
|
|
30
|
+
run_generator('lockdown_models', [name], sources)
|
|
31
|
+
assert_generated_file("some_file")
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
private
|
|
35
|
+
def sources
|
|
36
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
37
|
+
]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def generator_path
|
|
41
|
+
"rails_generators"
|
|
42
|
+
end
|
|
43
|
+
end
|
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.
|
|
36
|
+
<a href="http://rubyforge.org/projects/lockdown" class="numbers">0.1.2</a>
|
|
37
37
|
</div>
|
|
38
38
|
<h1>→ ‘lockdown’</h1>
|
|
39
39
|
|
metadata
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lockdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Andrew Stone
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-04-
|
|
12
|
+
date: 2008-04-25 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
|
-
description:
|
|
16
|
+
description: Authorization/Authentication system for RubyOnRails and Merb
|
|
17
17
|
email:
|
|
18
|
-
-
|
|
18
|
+
- andrew.n.stone@gmail.com
|
|
19
19
|
executables:
|
|
20
20
|
- lockdown
|
|
21
21
|
extensions: []
|
|
@@ -96,9 +96,11 @@ rubyforge_project: lockdown
|
|
|
96
96
|
rubygems_version: 1.1.1
|
|
97
97
|
signing_key:
|
|
98
98
|
specification_version: 2
|
|
99
|
-
summary:
|
|
99
|
+
summary: Authorization/Authentication system for RubyOnRails and Merb
|
|
100
100
|
test_files:
|
|
101
101
|
- test/test_generator_helper.rb
|
|
102
102
|
- test/test_helper.rb
|
|
103
103
|
- test/test_lockdown.rb
|
|
104
|
+
- test/test_lockdown_all_generator.rb
|
|
104
105
|
- test/test_lockdown_generator.rb
|
|
106
|
+
- test/test_lockdown_models_generator.rb
|