merb-flash 0.1.4 → 0.1.5
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/.gitignore +7 -0
- data/README.markdown +3 -3
- data/Rakefile +12 -48
- data/VERSION +1 -0
- data/merb-flash.gemspec +54 -0
- metadata +13 -10
data/.gitignore
ADDED
data/README.markdown
CHANGED
|
@@ -6,11 +6,11 @@ A plugin for the Merb framework that provides rails-like flash messages
|
|
|
6
6
|
Instalation
|
|
7
7
|
-----------
|
|
8
8
|
|
|
9
|
-
gem sources -a http://
|
|
10
|
-
sudo gem install
|
|
9
|
+
gem sources -a http://gemcutter.org
|
|
10
|
+
sudo gem install merb-flash
|
|
11
11
|
|
|
12
12
|
# config/dependencies.rb
|
|
13
|
-
dependency "
|
|
13
|
+
dependency "merb-flash"
|
|
14
14
|
|
|
15
15
|
Usage
|
|
16
16
|
-----
|
data/Rakefile
CHANGED
|
@@ -1,52 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
require '
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
EMAIL = "i@teamon.eu"
|
|
11
|
-
HOMEPAGE = "http://teamon.eu/"
|
|
12
|
-
SUMMARY = "Merb plugin that provides rails-like flash messages"
|
|
13
|
-
|
|
14
|
-
spec = Gem::Specification.new do |s|
|
|
15
|
-
s.rubyforge_project = 'merb'
|
|
16
|
-
s.name = GEM_NAME
|
|
17
|
-
s.version = GEM_VERSION
|
|
18
|
-
s.platform = Gem::Platform::RUBY
|
|
19
|
-
s.has_rdoc = true
|
|
20
|
-
s.extra_rdoc_files = ["README.markdown", "LICENSE", 'TODO']
|
|
21
|
-
s.summary = SUMMARY
|
|
22
|
-
s.description = s.summary
|
|
23
|
-
s.author = AUTHOR
|
|
24
|
-
s.email = EMAIL
|
|
25
|
-
s.homepage = HOMEPAGE
|
|
26
|
-
s.add_dependency('merb-core', '>= 1.0')
|
|
27
|
-
s.require_path = 'lib'
|
|
28
|
-
s.files = %w(LICENSE README.markdown Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
Rake::GemPackageTask.new(spec) do |pkg|
|
|
32
|
-
pkg.gem_spec = spec
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
desc "install the plugin as a gem"
|
|
36
|
-
task :install do
|
|
37
|
-
Merb::RakeHelper.install(GEM_NAME, :version => GEM_VERSION)
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
desc "Uninstall the gem"
|
|
41
|
-
task :uninstall do
|
|
42
|
-
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
desc "Create a gemspec file"
|
|
46
|
-
task :gemspec do
|
|
47
|
-
File.open("#{GEM_NAME}.gemspec", "w") do |file|
|
|
48
|
-
file.puts spec.to_ruby
|
|
1
|
+
begin
|
|
2
|
+
require 'jeweler'
|
|
3
|
+
Jeweler::Tasks.new do |gemspec|
|
|
4
|
+
gemspec.name = "merb-flash"
|
|
5
|
+
gemspec.summary = gemspec.description = "Merb plugin that provides rails-like flash messages"
|
|
6
|
+
gemspec.email = "i@teamon.eu"
|
|
7
|
+
gemspec.homepage = "http://github.com/teamon/merb-flash"
|
|
8
|
+
gemspec.authors = ["Tymon Tobolski"]
|
|
9
|
+
gemspec.add_dependency('merb-core', '>= 1.0')
|
|
49
10
|
end
|
|
11
|
+
Jeweler::GemcutterTasks.new
|
|
12
|
+
rescue LoadError
|
|
13
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
|
50
14
|
end
|
|
51
15
|
|
|
52
16
|
desc "Run specs"
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.5
|
data/merb-flash.gemspec
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
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{merb-flash}
|
|
8
|
+
s.version = "0.1.5"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Tymon Tobolski"]
|
|
12
|
+
s.date = %q{2009-10-12}
|
|
13
|
+
s.description = %q{Merb plugin that provides rails-like flash messages}
|
|
14
|
+
s.email = %q{i@teamon.eu}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.markdown",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"TODO",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/merb-flash.rb",
|
|
27
|
+
"merb-flash.gemspec",
|
|
28
|
+
"spec/merb-flash_spec.rb",
|
|
29
|
+
"spec/spec.opts",
|
|
30
|
+
"spec/spec_helper.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/teamon/merb-flash}
|
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
|
36
|
+
s.summary = %q{Merb plugin that provides rails-like flash messages}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"spec/merb-flash_spec.rb",
|
|
39
|
+
"spec/spec_helper.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
+
s.specification_version = 3
|
|
45
|
+
|
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
47
|
+
s.add_runtime_dependency(%q<merb-core>, [">= 1.0"])
|
|
48
|
+
else
|
|
49
|
+
s.add_dependency(%q<merb-core>, [">= 1.0"])
|
|
50
|
+
end
|
|
51
|
+
else
|
|
52
|
+
s.add_dependency(%q<merb-core>, [">= 1.0"])
|
|
53
|
+
end
|
|
54
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: merb-flash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tymon Tobolski
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-10-12 00:00:00 +02:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -29,25 +29,27 @@ executables: []
|
|
|
29
29
|
extensions: []
|
|
30
30
|
|
|
31
31
|
extra_rdoc_files:
|
|
32
|
-
- README.markdown
|
|
33
32
|
- LICENSE
|
|
34
|
-
-
|
|
33
|
+
- README.markdown
|
|
35
34
|
files:
|
|
35
|
+
- .gitignore
|
|
36
36
|
- LICENSE
|
|
37
37
|
- README.markdown
|
|
38
38
|
- Rakefile
|
|
39
39
|
- TODO
|
|
40
|
+
- VERSION
|
|
40
41
|
- lib/merb-flash.rb
|
|
42
|
+
- merb-flash.gemspec
|
|
41
43
|
- spec/merb-flash_spec.rb
|
|
42
44
|
- spec/spec.opts
|
|
43
45
|
- spec/spec_helper.rb
|
|
44
46
|
has_rdoc: true
|
|
45
|
-
homepage: http://
|
|
47
|
+
homepage: http://github.com/teamon/merb-flash
|
|
46
48
|
licenses: []
|
|
47
49
|
|
|
48
50
|
post_install_message:
|
|
49
|
-
rdoc_options:
|
|
50
|
-
|
|
51
|
+
rdoc_options:
|
|
52
|
+
- --charset=UTF-8
|
|
51
53
|
require_paths:
|
|
52
54
|
- lib
|
|
53
55
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -64,10 +66,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
66
|
version:
|
|
65
67
|
requirements: []
|
|
66
68
|
|
|
67
|
-
rubyforge_project:
|
|
69
|
+
rubyforge_project:
|
|
68
70
|
rubygems_version: 1.3.5
|
|
69
71
|
signing_key:
|
|
70
72
|
specification_version: 3
|
|
71
73
|
summary: Merb plugin that provides rails-like flash messages
|
|
72
|
-
test_files:
|
|
73
|
-
|
|
74
|
+
test_files:
|
|
75
|
+
- spec/merb-flash_spec.rb
|
|
76
|
+
- spec/spec_helper.rb
|