public
Rubygem
Description: Rails' "flash" session notification system ported to Merb
Clone URL: git://github.com/ivey/merb_has_flash.git
Search Repo:
Add gemspec
ivey (author)
Tue May 06 18:59:28 -0700 2008
commit  7d3b2cdc0c1622fac06ed4bb1b164a8559857349
tree    26f3f1a6c8be093df85f8484bfd3269f2dce82ca
parent  b03b454a9406f5235b8ad2c9dca785a19ec26e63
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
...
1
2
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
5
6
0
@@ -1,35 +1,6 @@
0
 require 'rubygems'
0
 require 'rake/gempackagetask'
0
 
0
-PLUGIN = "merb_has_flash"
0
-NAME = "merb_has_flash"
0
-VERSION = "0.9.2"
0
-AUTHOR = "Michael Ivey"
0
-EMAIL = "ivey@gweezlebur.com"
0
-HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_has_flash/"
0
-SUMMARY = "Merb plugin that provides a Rails-style flash"
0
-
0
-spec = Gem::Specification.new do |s|
0
- s.name = NAME
0
- s.version = VERSION
0
- s.platform = Gem::Platform::RUBY
0
- s.has_rdoc = true
0
- s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
0
- s.summary = SUMMARY
0
- s.description = s.summary
0
- s.author = AUTHOR
0
- s.email = EMAIL
0
- s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.2')
0
- s.require_path = 'lib'
0
- s.autorequire = PLUGIN
0
- s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
0
-end
0
-
0
-Rake::GemPackageTask.new(spec) do |pkg|
0
- pkg.gem_spec = spec
0
-end
0
-
0
 task :install => [:package] do
0
   sh %{sudo gem install pkg/#{NAME}-#{VERSION}}
0
 end
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
0
@@ -1 +1,23 @@
0
+Gem::Specification.new do |s|
0
+ s.name = "merb_has_flash"
0
+ s.version = "0.9.2"
0
+ s.date = "2008-05-06"
0
+ s.summary = "Rails' 'flash' session notification system ported to Merb"
0
+ s.email = "ivey@gweezlebur.com"
0
+ s.homepage = "http://github.com/ivey/merb_has_flash"
0
+ s.description = s.summary
0
+ s.has_rdoc = false
0
+ s.authors = ["Michael D. Ivey"]
0
+ s.files = ["LICENSE", "Rakefile", "README", "TODO", "lib/merb_has_flash.rb",
0
+ "lib/merb_has_flash/controller_extension.rb",
0
+ "lib/merb_has_flash/flash_hash.rb",
0
+ "lib/merb_has_flash/helper.rb",
0
+ "spec/merb_has_flash/controller_extension_spec.rb",
0
+ "spec/merb_has_flash/flash_hash_spec.rb",
0
+ "spec/spec_helper.rb"]
0
+ s.test_files = [ "spec/merb_has_flash/controller_extension_spec.rb",
0
+ "spec/merb_has_flash/flash_hash_spec.rb",
0
+ "spec/spec_helper.rb"]
0
+ s.add_dependency("merb-core", ["> 0.9.0"])
0
+end

Comments

  • jamie Tue Jun 17 12:58:31 -0700 2008

    This changeset breaks building the gem. Checking out previous rev (b03b454) builds fine.