forum_monster 1.0.1 → 1.0.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/VERSION +1 -1
- data/forum_monster.gemspec +37 -0
- data/lib/generators/forum_monster/templates/migrations/posts.rb +1 -1
- metadata +9 -8
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{forum_monster}
|
8
|
+
s.version = "1.0.2"
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
+
s.authors = ["Mike Kelley"]
|
13
|
+
s.email = ["mike@codezombie.org"]
|
14
|
+
s.homepage = "http://github.com/gitt/forum_monster"
|
15
|
+
s.description = "A Simple Rails 3 Forum Generator"
|
16
|
+
s.summary = "Forum Monster - #{s.version}"
|
17
|
+
|
18
|
+
s.extra_rdoc_files = [
|
19
|
+
"LICENSE",
|
20
|
+
"README.rdoc"
|
21
|
+
]
|
22
|
+
|
23
|
+
s.require_paths = 'lib'
|
24
|
+
s.files = `git ls-files`.split("\n")
|
25
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
26
|
+
|
27
|
+
|
28
|
+
if s.respond_to? :specification_version then
|
29
|
+
s.specification_version = 3
|
30
|
+
|
31
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
32
|
+
else
|
33
|
+
end
|
34
|
+
else
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forum_monster
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,10 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-10-13 00:00:00.000000000Z
|
13
13
|
dependencies: []
|
14
|
-
description: A Rails 3 Forum Generator
|
15
|
-
email:
|
14
|
+
description: A Simple Rails 3 Forum Generator
|
15
|
+
email:
|
16
|
+
- mike@codezombie.org
|
16
17
|
executables: []
|
17
18
|
extensions: []
|
18
19
|
extra_rdoc_files:
|
@@ -24,6 +25,7 @@ files:
|
|
24
25
|
- README.rdoc
|
25
26
|
- Rakefile
|
26
27
|
- VERSION
|
28
|
+
- forum_monster.gemspec
|
27
29
|
- lib/forum_monster.rb
|
28
30
|
- lib/generators/forum_monster/install_generator.rb
|
29
31
|
- lib/generators/forum_monster/templates/controllers/categories_controller.rb
|
@@ -61,8 +63,7 @@ homepage: http://github.com/gitt/forum_monster
|
|
61
63
|
licenses: []
|
62
64
|
post_install_message:
|
63
65
|
rdoc_options: []
|
64
|
-
require_paths:
|
65
|
-
- lib
|
66
|
+
require_paths: lib
|
66
67
|
required_ruby_version: !ruby/object:Gem::Requirement
|
67
68
|
none: false
|
68
69
|
requirements:
|
@@ -77,8 +78,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
78
|
version: '0'
|
78
79
|
requirements: []
|
79
80
|
rubyforge_project:
|
80
|
-
rubygems_version: 1.8.
|
81
|
+
rubygems_version: 1.8.10
|
81
82
|
signing_key:
|
82
83
|
specification_version: 3
|
83
|
-
summary:
|
84
|
+
summary: Forum Monster - 1.0.2
|
84
85
|
test_files: []
|