forked from locomotivecms/engine
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix a minor bug about the contents menu + new devise_bushido_authenti…
…catable gem
- Loading branch information
did
committed
Jul 26, 2011
1 parent
e05586d
commit d5111d2
Showing
5 changed files
with
58 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,69 +2,70 @@ | |
lib = File.expand_path('../lib/', __FILE__) | ||
$:.unshift lib unless $:.include?(lib) | ||
|
||
require "locomotive/version" | ||
require 'locomotive/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "locomotive_cms" | ||
s.name = 'locomotive_cms' | ||
s.version = Locomotive::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Didier Lafforgue"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "http://locomotiveapp.org" | ||
s.summary = "A Next Generation Sexy CMS for Rails3" | ||
s.description = "Locomotive is a next generation CMS system with sexy admin tools, liquid templating, and inline editing powered by mongodb and rails3" | ||
s.authors = ['Didier Lafforgue'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'http://locomotiveapp.org' | ||
s.summary = 'A Next Generation Sexy CMS for Rails3' | ||
s.description = 'Locomotive is a next generation CMS system with sexy admin tools, liquid templating, and inline editing powered by mongodb and rails3' | ||
|
||
s.required_rubygems_version = ">= 1.3.6" | ||
s.rubyforge_project = "nowarning" | ||
s.required_rubygems_version = '>= 1.3.6' | ||
s.rubyforge_project = 'nowarning' | ||
|
||
s.add_dependency "rails", ">= 3.0.9" | ||
s.add_dependency "warden" | ||
s.add_dependency "devise", "1.3.4" | ||
s.add_dependency "mongoid", "2.0.2" | ||
s.add_dependency "bson_ext", "~> 1.3.0" | ||
s.add_dependency "locomotive_mongoid_acts_as_tree", "0.1.5.7" | ||
s.add_dependency "will_paginate" | ||
s.add_dependency 'rails', '>= 3.0.9' | ||
s.add_dependency 'warden' | ||
s.add_dependency 'devise', '1.3.4' | ||
s.add_dependency 'devise_bushido_authenticatable', '1.0.0.alpha10' | ||
s.add_dependency 'mongoid', '2.0.2' | ||
s.add_dependency 'bson_ext', '~> 1.3.0' | ||
s.add_dependency 'locomotive_mongoid_acts_as_tree', '0.1.5.7' | ||
s.add_dependency 'will_paginate' | ||
|
||
s.add_dependency "haml", "3.1.2" | ||
s.add_dependency "sass", "3.1.2" | ||
s.add_dependency "locomotive_liquid", "2.2.2" | ||
s.add_dependency "formtastic", "~> 1.2.3" | ||
s.add_dependency "inherited_resources", "~> 1.1.2" | ||
s.add_dependency "cells" | ||
s.add_dependency 'haml', '3.1.2' | ||
s.add_dependency 'sass', '3.1.2' | ||
s.add_dependency 'locomotive_liquid', '2.2.2' | ||
s.add_dependency 'formtastic', '~> 1.2.3' | ||
s.add_dependency 'inherited_resources', '~> 1.1.2' | ||
s.add_dependency 'cells' | ||
|
||
s.add_dependency "json_pure", "1.5.1" | ||
s.add_dependency "bushido" | ||
s.add_dependency "heroku", "1.19.1" | ||
s.add_dependency 'json_pure', '1.5.1' | ||
s.add_dependency 'bushido' | ||
s.add_dependency 'heroku', '1.19.1' | ||
|
||
s.add_dependency "rmagick", "2.12.2" | ||
s.add_dependency "carrierwave", "~> 0.5.5" | ||
s.add_dependency "dragonfly", "~> 0.9.1" | ||
s.add_dependency "rack-cache" | ||
s.add_dependency 'rmagick', '2.12.2' | ||
s.add_dependency 'carrierwave', '~> 0.5.5' | ||
s.add_dependency 'dragonfly', '~> 0.9.1' | ||
s.add_dependency 'rack-cache' | ||
|
||
s.add_dependency "custom_fields", "1.0.0.beta.21" | ||
s.add_dependency "cancan", "~> 1.6.0" | ||
s.add_dependency "fog", "0.8.2" | ||
s.add_dependency "mimetype-fu" | ||
s.add_dependency "actionmailer-with-request" | ||
s.add_dependency "httparty", ">= 0.6.1" | ||
s.add_dependency "RedCloth", "4.2.7" | ||
s.add_dependency "delayed_job", "2.1.4" | ||
s.add_dependency "delayed_job_mongoid", "1.0.2" | ||
s.add_dependency "rubyzip" | ||
s.add_dependency "locomotive_jammit-s3" | ||
s.add_dependency 'custom_fields', '1.0.0.beta.21' | ||
s.add_dependency 'cancan', '~> 1.6.0' | ||
s.add_dependency 'fog', '0.8.2' | ||
s.add_dependency 'mimetype-fu' | ||
s.add_dependency 'actionmailer-with-request' | ||
s.add_dependency 'httparty', '>= 0.6.1' | ||
s.add_dependency 'RedCloth', '4.2.7' | ||
s.add_dependency 'delayed_job', '2.1.4' | ||
s.add_dependency 'delayed_job_mongoid', '1.0.2' | ||
s.add_dependency 'rubyzip' | ||
s.add_dependency 'locomotive_jammit-s3' | ||
|
||
s.files = Dir[ "Gemfile", | ||
"{app}/**/*", | ||
"{config}/**/*", | ||
"{lib}/**/*", | ||
"{public}/stylesheets/admin/**/*", "{public}/javascripts/admin/**/*", "{public}/images/admin/**/*", | ||
"{vendor}/**/*"] | ||
s.files = Dir[ 'Gemfile', | ||
'{app}/**/*', | ||
'{config}/**/*', | ||
'{lib}/**/*', | ||
'{public}/stylesheets/admin/**/*', '{public}/javascripts/admin/**/*', '{public}/images/admin/**/*', | ||
'{vendor}/**/*'] | ||
|
||
s.require_path = 'lib' | ||
|
||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
"README.textile" | ||
'LICENSE', | ||
'README.textile' | ||
] | ||
|
||
end |