public
Description: Spree is a complete open source commerce solution for Ruby on Rails.
Homepage: http://spreehq.org
Clone URL: git://github.com/schof/spree.git
more fixes for the spree project generation
schof (author)
Tue Apr 15 19:58:05 -0700 2008
commit  9173397e0a789ca136d387dbc79cfbe3b76176c0
tree    2dbac45386bc23bbc00aca1f3697adf1201ff405
parent  2c8703eab0ee51376f3556a5f6a08f099f1c73ad
...
11
12
13
14
15
 
 
16
17
18
...
41
42
43
44
 
45
46
47
48
 
49
50
51
52
53
54
 
55
56
57
...
64
65
66
67
 
68
69
70
71
72
73
74
 
75
76
77
...
11
12
13
 
 
14
15
16
17
18
...
41
42
43
 
44
45
46
47
48
49
50
51
52
53
54
 
55
56
57
58
...
65
66
67
 
68
69
70
71
72
73
74
 
75
76
77
78
0
@@ -11,8 +11,8 @@ RUBY_FORGE_PROJECT = PKG_NAME
0
 RUBY_FORGE_USER = ENV['RUBY_FORGE_USER'] || 'schof'
0
 
0
 RELEASE_NAME = PKG_VERSION
0
-RUBY_FORGE_GROUPID = '1337'
0
-RUBY_FORGE_PACKAGEID = '1638'
0
+RUBY_FORGE_GROUPID = '5614'
0
+RUBY_FORGE_PACKAGEID = '7123'
0
 
0
 RDOC_TITLE = "Spree -- Complete Commerce Solution for Ruby on Rails"
0
 RDOC_EXTRAS = ["README", "CONTRIBUTORS", "CHANGELOG", "INSTALL", "LICENSE"]
0
@@ -41,17 +41,18 @@ namespace 'spree' do
0
     files.exclude '**/._*'
0
     files.exclude '**/*.rej'
0
     files.exclude 'cache/'
0
- files.exclude 'config/database.yml'
0
+ #files.exclude 'config/database.yml'
0
     files.exclude 'config/locomotive.yml'
0
     files.exclude 'config/lighttpd.conf'
0
     files.exclude 'config/mongrel_mimes.yml'
0
     files.exclude 'db/*.db'
0
+ files.exclude 'db/*.rb'
0
     files.exclude /^doc/
0
     files.exclude 'log/*.log'
0
     files.exclude 'log/*.pid'
0
     #files.include 'log/.keep'
0
     files.exclude /^pkg/
0
- #files.include 'public/.htaccess'
0
+ files.include 'public/.htaccess'
0
     files.exclude 'tmp/'
0
     s.files = files.to_a
0
   end
0
@@ -64,14 +65,14 @@ namespace 'spree' do
0
   namespace :gem do
0
     desc "Uninstall Gem"
0
     task :uninstall do
0
- sh "sudo gem uninstall #{PKG_NAME}" rescue nil
0
+ sh "gem uninstall #{PKG_NAME}" rescue nil
0
     end
0
 
0
     desc "Build and install Gem from source"
0
     task :install => [:package, :uninstall] do
0
       chdir("#{SPREE_ROOT}/pkg") do
0
         latest = Dir["#{PKG_NAME}-*.gem"].last
0
- sh "sudo gem install #{latest}"
0
+ sh "gem install #{latest}"
0
       end
0
     end
0
   end

Comments

    No one has commented yet.