Skip to content

Commit

Permalink
Fixed sashimi.gemspec: sashimi executable is now available after gem …
Browse files Browse the repository at this point in the history
…setup
  • Loading branch information
Luca Guidi committed May 19, 2008
1 parent a585fd7 commit df66cd0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,3 +1,5 @@
* Fixed sashimi.gemspec: sashimi executable is now available after gem setup

* Made AbstractRepository#remove_hidden_folders platform independent

* Fixed loading in sashimi
Expand Down
26 changes: 14 additions & 12 deletions sashimi.gemspec
@@ -1,15 +1,17 @@
Gem::Specification.new do |s|
s.name = "sashimi"
s.version = "0.1.0"
s.date = "2008-05-19"
s.summary = "Rails plugins manager"
s.email = "guidi.luca@gmail.com"
s.homepage = "http://lucaguidi.com/pages/sashimi"
s.description = "Sashimi is a local repository for Rails plugins."
s.has_rdoc = true
s.authors = ["Luca Guidi"]
s.files = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README", "sashimi.gemspec", "setup.rb", "bin/sashimi", "lib/sashimi/commands.rb", "lib/sashimi/plugin.rb", "lib/sashimi/repositories/abstract_repository.rb", "lib/sashimi/repositories/git_repository.rb", "lib/sashimi/repositories/svn_repository.rb", "lib/sashimi/repositories.rb", "lib/sashimi.rb", "test/test_helper.rb", "test/unit/plugin_test.rb", "test/unit/repositories/abstract_repository_test.rb", "test/unit/repositories/git_repository_test.rb", "test/unit/repositories/svn_repository_test.rb"]
s.test_files = ["test/unit/plugin_test.rb", "test/unit/repositories/abstract_repository_test.rb", "test/unit/repositories/git_repository_test.rb", "test/unit/repositories/svn_repository_test.rb"]
s.rdoc_options = ["README"]
s.name = "sashimi"
s.version = "0.1.0"
s.date = "2008-05-19"
s.summary = "Rails plugins manager"
s.author = "Luca Guidi"
s.email = "guidi.luca@gmail.com"
s.homepage = "http://lucaguidi.com/pages/sashimi"
s.description = "Sashimi is a local repository for Rails plugins."
s.has_rdoc = true
s.executables = [ 'sashimi' ]
s.files = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README", "sashimi.gemspec", "setup.rb", "bin/sashimi", "lib/sashimi/commands.rb", "lib/sashimi/plugin.rb", "lib/sashimi/repositories/abstract_repository.rb", "lib/sashimi/repositories/git_repository.rb", "lib/sashimi/repositories/svn_repository.rb", "lib/sashimi/repositories.rb", "lib/sashimi.rb", "test/test_helper.rb", "test/unit/plugin_test.rb", "test/unit/repositories/abstract_repository_test.rb", "test/unit/repositories/git_repository_test.rb", "test/unit/repositories/svn_repository_test.rb"]
s.test_files = ["test/unit/plugin_test.rb", "test/unit/repositories/abstract_repository_test.rb", "test/unit/repositories/git_repository_test.rb", "test/unit/repositories/svn_repository_test.rb"]
s.extra_rdoc_files = ['README', 'CHANGELOG']

s.add_dependency("activesupport", ["> 0.0.0"])
end

0 comments on commit df66cd0

Please sign in to comment.