forge-cli 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +14 -6
  2. data/lib/forge-cli/version.rb +1 -1
  3. data/lib/forge/app/controllers/forge/assets_controller.rb +2 -1
  4. data/lib/forge/app/controllers/forge/banners_controller.rb +2 -1
  5. data/lib/forge/app/controllers/forge/comments_controller.rb +2 -1
  6. data/lib/forge/app/controllers/forge/dispatches_controller.rb +2 -1
  7. data/lib/forge/app/controllers/forge/events_controller.rb +2 -2
  8. data/lib/forge/app/controllers/forge/galleries_controller.rb +2 -1
  9. data/lib/forge/app/controllers/forge/orders_controller.rb +4 -3
  10. data/lib/forge/app/controllers/forge/post_categories_controller.rb +2 -1
  11. data/lib/forge/app/controllers/forge/product_categories_controller.rb +0 -4
  12. data/lib/forge/app/controllers/forge/products_controller.rb +7 -6
  13. data/lib/forge/app/controllers/forge/sales_controller.rb +8 -4
  14. data/lib/forge/app/controllers/forge/subscriber_groups_controller.rb +2 -1
  15. data/lib/forge/app/controllers/forge/subscribers_controller.rb +2 -1
  16. data/lib/forge/app/controllers/forge/tax_rates_controller.rb +0 -4
  17. data/lib/forge/app/controllers/forge/users_controller.rb +2 -1
  18. data/lib/forge/app/controllers/forge/videos_controller.rb +2 -1
  19. data/lib/forge/app/models/asset.rb +1 -1
  20. data/lib/forge/app/views/forge/comments/index.html.haml +1 -0
  21. data/lib/forge/app/views/forge/dispatches/_form.html.haml +1 -1
  22. data/lib/forge/app/views/forge/product_categories/index.html.haml +1 -1
  23. data/lib/forge/app/views/forge/products/index.html.haml +4 -3
  24. data/lib/forge/app/views/forge/subscriber_groups/_subscriber_group.html.haml +2 -2
  25. data/lib/forge/app/views/posts/index.html.haml +1 -1
  26. data/lib/forge/lib/assets/stylesheets/forge/forge.ui.css.scss +2 -2
  27. data/lib/forge/lib/generators/forge/scaffold/templates/controller.rb +2 -1
  28. data/lib/forge/lib/generators/forge/scaffold_small/templates/controller.rb +2 -1
  29. metadata +15 -15
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: efd5da8c96fee9aa0a2e7d3dea1bbee6988c9177
4
- data.tar.gz: c3a9540c79d0385d6d6cff43c1ec9fd7873c1678
5
- SHA512:
6
- metadata.gz: 2b52ab71ca58fe8462f19dc9ba4acb1bdca009719619a9f9d34b997bf43881e25370f10e713bdf58385d0c3b195230963cdf66d7175e2f74a9be1f67ea54cc36
7
- data.tar.gz: 87956d82909d5131fa2f5a032e7afe19d17595c05b362903340fc617b63d659c8a768541ae428430bdd16d45cf640590f22977bf491a77a88846b102127c9883
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Y2E0ZmQxYzgyNTY4NjcxYjgyYjI4NjIwYjI1YWQxMDM4ZmY5NWM0MA==
5
+ data.tar.gz: !binary |-
6
+ ZmUzNTkyNDFlM2VjZjU5MTEwOGUzZmMwNWFiMjg1NTc1NTFjZTZjYQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OWRkOWQ0Y2U1MmZkMzdhMmIwMDFkODU4NzNiMTQyMGUwMDk3ZDdlOGFlMmVh
10
+ YjBjMGIxMDcyZjUxMWM2NmQ5ZDFiMTU0MjFlY2JlMjdiNjdlNWJkZDFjZGRj
11
+ OTE1OGIzZmE3OTU4NmUwM2U0YmYzYWU4Mzg4NTA1M2I2MzhmZWU=
12
+ data.tar.gz: !binary |-
13
+ MzhhMDJkOTVjYmJhMzg0N2UwM2QxODE0ZDVmNTNlYTRkOTg4OTA3NmRiNWU3
14
+ ZDM2YzU1NGIyNGJkZWExODcwMDVkNDNmOWEyYWVmMDZlMjE4NmI5ZDZhNDk4
15
+ ZmE2OGNiZWMwNjc2ZTBjOTI4MDRjMDVlYjBlYjZiNWMxMTc5MDE=
@@ -1,3 +1,3 @@
1
1
  class ForgeCLI
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
@@ -13,7 +13,8 @@ class Forge::AssetsController < ForgeController
13
13
  respond_to do |format|
14
14
  format.html { @assets = Asset.paginate(:per_page => 20, :page => params[:page]) }
15
15
  format.js {
16
- @assets = Asset.where("assets.title LIKE ?", "%#{params[:q]}%")
16
+ params[:q] ||= ''
17
+ @assets = Asset.includes(:tags).where("LOWER(assets.title) LIKE ? OR LOWER(tags.name) LIKE ?", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%").references(:tags)
17
18
  render :partial => "asset", :collection => @assets
18
19
  }
19
20
  end
@@ -5,7 +5,8 @@ class Forge::BannersController < ForgeController
5
5
  respond_to do |format|
6
6
  format.html { @banners = Banner.order(:list_order).paginate(:per_page => 10, :page => params[:page]) }
7
7
  format.js {
8
- @banners = Banner.where("title LIKE ?", "%#{params[:q]}%")
8
+ params[:q] ||= ''
9
+ @banners = Banner.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
9
10
  render :partial => "banner", :collection => @banners
10
11
  }
11
12
  end
@@ -7,7 +7,8 @@ class Forge::CommentsController < ForgeController
7
7
  respond_to do |format|
8
8
  format.html { @comments = Comment.where(conditions).paginate(:include => :commentable, :per_page => 10, :page => params[:page]) }
9
9
  format.js {
10
- @comments = Comment.where("author LIKE ? OR content LIKE ?", "%#{params[:q]}%", "%#{params[:q]}%")
10
+ params[:q] ||= ''
11
+ @comments = Comment.where("LOWER(author) LIKE ? OR LOWER(content) LIKE ?", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%")
11
12
  render :partial => "comment", :collection => @comments
12
13
  }
13
14
  end
@@ -6,7 +6,8 @@ class Forge::DispatchesController < ForgeController
6
6
  respond_to do |format|
7
7
  format.html { @dispatches = Dispatch.paginate(:per_page => 10, :page => params[:page]) }
8
8
  format.js {
9
- @dispatches = Dispatch.where("title LIKE ?", "%#{params[:q]}%")
9
+ params[:q] ||= ''
10
+ @dispatches = Dispatch.where("LOWER(subject) LIKE ? OR LOWER(content) LIKE ?", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%")
10
11
  render :partial => "dispatch", :collection => @dispatches
11
12
  }
12
13
  end
@@ -1,13 +1,13 @@
1
1
  class Forge::EventsController < ForgeController
2
2
  load_and_authorize_resource
3
3
  before_filter :uses_ckeditor, :only => [:edit, :update, :new, :create]
4
-
5
4
 
6
5
  def index
7
6
  respond_to do |format|
8
7
  format.html { @events = Event.paginate(:per_page => 10, :page => params[:page]) }
9
8
  format.js {
10
- @events = Event.where("title LIKE ?", "%#{params[:q]}%")
9
+ params[:q] ||= ''
10
+ @events = Event.where("LOWER(title) LIKE ? OR LOWER(location) LIKE ? OR LOWER(description) LIKE ?", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%")
11
11
  render :partial => "event", :collection => @events
12
12
  }
13
13
  end
@@ -5,7 +5,8 @@ class Forge::GalleriesController < ForgeController
5
5
  respond_to do |format|
6
6
  format.html { @galleries = Gallery.paginate(:per_page => 10, :page => params[:page]) }
7
7
  format.js {
8
- @galleries = Gallery.where("title LIKE ?", "%#{params[:q]}%")
8
+ params[:q] ||= ''
9
+ @galleries = Gallery.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
9
10
  render :partial => "gallery", :collection => @galleries
10
11
  }
11
12
  end
@@ -4,14 +4,15 @@ class Forge::OrdersController < ForgeController
4
4
  def index
5
5
  conditions = {"fulfill" => '=', "unfulfill" => '<>'}
6
6
  unless params[:show].nil?
7
- @orders = Order.not_pending.where("state #{conditions[params[:show]]} 'fulfilled'").order("created_at DESC") #note that this safe from injection, any params[:show] that isn't "fulfill" or nil will just return false
7
+ @orders = Order.not_pending.where("state #{conditions[params[:show]]} 'fulfilled'").order("orders.created_at DESC") #note that this safe from injection, any params[:show] that isn't "fulfill" or nil will just return false
8
8
  else
9
- @orders = Order.not_pending.order("created_at DESC")
9
+ @orders = Order.not_pending.order("orders.created_at DESC")
10
10
  end
11
11
  respond_to do |format|
12
12
  format.html { @orders = @orders.paginate(:per_page => 10, :page => params[:page]).includes(:shipping_address, :billing_address) }
13
13
  format.js {
14
- @orders = @orders.where("orders.id = ? OR orders.state = ? OR addresses.first_name LIKE ? OR addresses.last_name LIKE ? OR addresses.email like ?", params[:q], params[:q], "%#{params[:q]}%", "%#{params[:q]}%", "%#{params[:q]}%").includes(:shipping_address, :billing_address)
14
+ params[:q] ||= ''
15
+ @orders = @orders.where("orders.id = ? OR orders.state = ? OR LOWER(addresses.first_name) LIKE ? OR LOWER(addresses.last_name) LIKE ? OR LOWER(addresses.email) LIKE ?", params[:q].to_i, params[:q], "%#{params[:q].downcase}%", "%#{params[:q].downcase}%", "%#{params[:q].downcase}%").includes(:shipping_address, :billing_address)
15
16
  render :partial => "order", :collection => @orders
16
17
  }
17
18
  end
@@ -6,7 +6,8 @@ class Forge::PostCategoriesController < ForgeController
6
6
  respond_to do |format|
7
7
  format.html { get_post_categories }
8
8
  format.js {
9
- @post_categories = PostCategory.where("title LIKE ?", "%#{params[:q]}%")
9
+ params[:q] ||= ''
10
+ @post_categories = PostCategory.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
10
11
  @post_categories = @post_categories.order(:title)
11
12
  render :partial => "post_category", :collection => @post_categories
12
13
  }
@@ -7,10 +7,6 @@ class Forge::ProductCategoriesController < ForgeController
7
7
  @product_categories = ProductCategory.paginate(:per_page => 10, :page => params[:page])
8
8
  @product_category = ProductCategory.new
9
9
  }
10
- format.js {
11
- @product_categories = ProductCategory.where("title LIKE ?", "%#{params[:q]}%")
12
- render :partial => "product_category", :collection => @product_categories
13
- }
14
10
  end
15
11
  end
16
12
 
@@ -3,21 +3,22 @@ class Forge::ProductsController < ForgeController
3
3
  before_filter :get_categories, :except => [:destroy, :reorder]
4
4
  load_and_authorize_resource :except => [:edit]
5
5
 
6
- # GET /forge_products
6
+ # TODO: at the moment, only up to 100 products are shown. This is so that product reordering can work properly
7
+ # (it doesn't work well with pagination). A better solution needs to be put in place for this.
7
8
  def index
8
- # @categories = ProductCategory.find(:all, :order => "list_order ASC")
9
-
10
9
  respond_to do |format|
11
- format.html { @products = Product.limit(20).order("list_order ASC") }
10
+ format.html { @products = Product.limit(100).order("list_order ASC") }
12
11
  format.js {
13
- @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q]}%"}).limit(20)
12
+ params[:q] ||= ''
13
+ @products = Product.where("LOWER(title) LIKE :q OR LOWER(description) LIKE :q", {:q => "%#{params[:q].downcase}%"}).limit(20)
14
14
  render :partial => "product_list"
15
15
  }
16
16
  end
17
17
  end
18
18
 
19
19
  def search
20
- @products = Product.find(:all, :order => "title", :conditions => ["title LIKE ? OR description LIKE ?", "%#{params[:search]}%", "%#{params[:search]}%"])
20
+ params[:search] ||= ''
21
+ @products = Product.find(:all, :order => "title", :conditions => ["LOWER(title) LIKE ? OR LOWER(description) LIKE ?", "%#{params[:search].downcase}%", "%#{params[:search].downcase}%"])
21
22
  end
22
23
 
23
24
  # GET /forge_products/new
@@ -8,7 +8,8 @@ class Forge::SalesController < ForgeController
8
8
  respond_to do |format|
9
9
  format.html { @sales = Sale.paginate(:per_page => 10, :page => params[:page]) }
10
10
  format.js {
11
- @sales = Sale.where("title LIKE ?", "%#{params[:q]}%")
11
+ params[:q] ||= ''
12
+ @sales = Sale.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
12
13
  render :partial => "sale", :collection => @sales
13
14
  }
14
15
  end
@@ -16,11 +17,13 @@ class Forge::SalesController < ForgeController
16
17
 
17
18
  def new
18
19
  @sale = Sale.new
19
- @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q]}%"})
20
+ params[:q] ||= ''
21
+ @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q].downcase}%"})
20
22
  end
21
23
 
22
24
  def edit
23
- @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q]}%"})
25
+ params[:q] ||= ''
26
+ @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q].downcase}%"})
24
27
  end
25
28
 
26
29
  def create
@@ -53,7 +56,8 @@ class Forge::SalesController < ForgeController
53
56
  respond_to do |format|
54
57
  format.html { @products = Product.all }
55
58
  format.js {
56
- @products = Product.where("title LIKE :q OR description LIKE :q", {:q => "%#{params[:q]}%"})
59
+ params[:q] ||= ''
60
+ @products = Product.where("LOWER(title) LIKE :q OR LOWER(description) LIKE :q", {:q => "%#{params[:q].downcase}%"})
57
61
  render :partial => "products"
58
62
  }
59
63
  end
@@ -8,7 +8,8 @@ class Forge::SubscriberGroupsController < ForgeController
8
8
  @subscriber_group = SubscriberGroup.new
9
9
  }
10
10
  format.js {
11
- @subscriber_groups = SubscriberGroup.where("title LIKE ?", "%#{params[:q]}%")
11
+ params[:q] ||= ''
12
+ @subscriber_groups = SubscriberGroup.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
12
13
  render :partial => "subscriber_group", :collection => @subscriber_groups
13
14
  }
14
15
  end
@@ -8,7 +8,8 @@ class Forge::SubscribersController < ForgeController
8
8
  respond_to do |format|
9
9
  format.html { }
10
10
  format.js {
11
- @subscribers = Subscriber.where("name LIKE :q OR email LIKE :q", {:q => "%#{params[:q]}%"})
11
+ params[:q] ||= ''
12
+ @subscribers = Subscriber.where("LOWER(name) LIKE :q OR LOWER(email) LIKE :q", {:q => "%#{params[:q].downcase}%"})
12
13
  render :partial => "subscriber", :collection => @subscribers
13
14
  }
14
15
  end
@@ -5,10 +5,6 @@ class Forge::TaxRatesController < ForgeController
5
5
  @tax_rate = TaxRate.new
6
6
  respond_to do |format|
7
7
  format.html { get_tax_rates }
8
- format.js {
9
- @tax_rates = TaxRate.where("title LIKE ?", "%#{params[:q]}%")
10
- render :partial => "tax_rate", :collection => @tax_rates
11
- }
12
8
  end
13
9
  end
14
10
 
@@ -6,7 +6,8 @@ class Forge::UsersController < ForgeController
6
6
  respond_to do |format|
7
7
  format.html { @users = User.paginate(:per_page => 10, :page => params[:page]) }
8
8
  format.js {
9
- @users = User.where("email LIKE ?", "%#{params[:q]}%")
9
+ params[:q] ||= ''
10
+ @users = User.where("LOWER(email) LIKE ?", "%#{params[:q].downcase}%")
10
11
  render :partial => "user", :collection => @users
11
12
  }
12
13
  end
@@ -8,7 +8,8 @@ class Forge::VideosController < ForgeController
8
8
  respond_to do |format|
9
9
  format.html { @videos = Video.paginate(:per_page => 10, :page => params[:page]) }
10
10
  format.js {
11
- @videos = Video.where("title LIKE ?", "%#{params[:q]}%")
11
+ params[:q] ||= ''
12
+ @videos = Video.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
12
13
  render :partial => "video", :collection => @videos
13
14
  }
14
15
  end
@@ -31,7 +31,7 @@ class Asset < ActiveRecord::Base
31
31
 
32
32
  def self.for_drawer(params)
33
33
  unless params[:q].blank?
34
- assets = where("assets.title LIKE ? OR tags.name = ?", "%#{params[:q]}%", params[:q]).includes(:taggings => :tag)
34
+ assets = where("LOWER(assets.title) LIKE ? OR LOWER(tags.name) = ?", "%#{params[:q].downcase}%", params[:q].downcase).includes(:tags).references(:tags)
35
35
  else
36
36
  case params[:filter]
37
37
  when "images"
@@ -3,6 +3,7 @@
3
3
  :javascript
4
4
  $( function () {
5
5
  FORGE.features.comments.init();
6
+ $('#quick-search').quickSearch({url: '#{forge_comments_path}'});
6
7
  });
7
8
 
8
9
  %h1 Comments
@@ -13,7 +13,7 @@
13
13
  = error_messages_for :dispatch
14
14
 
15
15
  = form_for [:forge, @dispatch] do |f|
16
- #form-header= title_row(:explanation => "Give your dispatch a title.") { f.text_field :subject, :class => 'title' }
16
+ #form-header= title_row(:explanation => "Give your dispatch a subject.", :title => "Subject") { f.text_field :subject, :class => 'title' }
17
17
 
18
18
  .inner-form
19
19
  .column.full.last
@@ -12,7 +12,7 @@
12
12
  %h1
13
13
  Product Categories
14
14
  = language_switcher(:product_categories)
15
- %p.info This is a list of all the product categories in your site. You can add, edit, and delete product categories here.
15
+ %p.info This is a list of all the product categories in your site. You can add, edit, delete and reorder product categories here.
16
16
 
17
17
 
18
18
  .inner-form.no-top.with-wide-sidebar
@@ -9,14 +9,15 @@
9
9
  $('#quick-search').quickSearch({url: '#{forge_products_path}'});
10
10
  });
11
11
 
12
-
13
12
  %h1 Your Products
14
13
 
15
- %p.info These are all of the products on your site.
14
+ %p.info
15
+ These are all of the products on your site. A maximum of 100 products are displayed. Use the search to find
16
+ other products as needed.
16
17
 
17
18
  = render :partial => "forge/shared/section_header", :locals => {:item => Product}
18
19
  %ul#item-list= render :partial => "product", :collection => @products
19
20
  #item-list-bottom
20
21
  %strong.float-right
21
- = "Too many results, only 20 displayed" if @products.size > 19
22
+ = "Too many results, only 100 displayed" if @products.size > 99
22
23
 
@@ -2,11 +2,11 @@
2
2
  .item-title
3
3
  %strong= subscriber_group.title
4
4
  .item-actions
5
- .item-action.edit{:style => "width: 50px;"}<
5
+ .item-action.edit<
6
6
  = link_to image_tag('forge/icons/edit.png'), edit_forge_subscriber_group_path(subscriber_group)
7
7
  %small= link_to "Edit", edit_forge_subscriber_group_path(subscriber_group)
8
8
  .item-action.last<
9
9
  = link_to image_tag('forge/icons/delete.png'), forge_subscriber_group_path(subscriber_group), :method => :delete, :confirm => "Are you sure?"
10
10
  %small= link_to "Delete", forge_subscriber_group_path(subscriber_group), :method => :delete, :confirm => "Are you sure?"
11
11
 
12
- .spacer
12
+ .spacer
@@ -20,4 +20,4 @@
20
20
  .pagination-info= will_paginate @posts, :previous_label => "Previous", :next_label => "Next"
21
21
 
22
22
  = render "posts/categories"
23
- = render "posts/archive_months"
23
+ = render "posts/archive_months"
@@ -38,7 +38,7 @@
38
38
  ----------------------------------*/
39
39
 
40
40
  /* Overlays */
41
- .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 998; }
41
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 120%; z-index: 998; }
42
42
 
43
43
 
44
44
  /*
@@ -382,4 +382,4 @@
382
382
  left: -4px; /*must have*/
383
383
  width: 200px; /*must have*/
384
384
  height: 200px; /*must have*/
385
- }
385
+ }
@@ -13,7 +13,8 @@ class Forge::<%= class_name.pluralize %>Controller < ForgeController
13
13
  respond_to do |format|
14
14
  format.html { @<%= plural_table_name %> = <%= class_name %><%= ".order(:list_order)" unless attributes.select{|a| a.name == "list_order" }.empty? %>.paginate(:per_page => 10, :page => params[:page]) }
15
15
  format.js {
16
- @<%= plural_table_name %> = <%= class_name %>.where("title LIKE ?", "%#{params[:q]}%")
16
+ params[:q] ||= ''
17
+ @<%= plural_table_name %> = <%= class_name %>.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
17
18
  render :partial => "<%= file_name %>", :collection => @<%= plural_table_name %>
18
19
  }
19
20
  end
@@ -16,7 +16,8 @@ class Forge::<%= class_name.pluralize %>Controller < ForgeController
16
16
  @<%= singular_name %> = <%= class_name %>.new
17
17
  }
18
18
  format.js {
19
- @<%= plural_table_name %> = <%= class_name %>.where("title LIKE ?", "%#{params[:q]}%")
19
+ params[:q] ||= ''
20
+ @<%= plural_table_name %> = <%= class_name %>.where("LOWER(title) LIKE ?", "%#{params[:q].downcase}%")
20
21
  render :partial => "<%= file_name %>", :collection => @<%= plural_table_name %>
21
22
  }
22
23
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forge-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - factor[e] design initiative
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-18 00:00:00.000000000 Z
11
+ date: 2013-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: aruba
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
@@ -70,28 +70,28 @@ dependencies:
70
70
  name: rainbow
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ! '>='
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ! '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: thor
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '>='
87
+ - - ! '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '>='
94
+ - - ! '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  description:
@@ -983,12 +983,12 @@ require_paths:
983
983
  - lib
984
984
  required_ruby_version: !ruby/object:Gem::Requirement
985
985
  requirements:
986
- - - '>='
986
+ - - ! '>='
987
987
  - !ruby/object:Gem::Version
988
988
  version: '0'
989
989
  required_rubygems_version: !ruby/object:Gem::Requirement
990
990
  requirements:
991
- - - '>='
991
+ - - ! '>='
992
992
  - !ruby/object:Gem::Version
993
993
  version: '0'
994
994
  requirements: []
@@ -996,5 +996,5 @@ rubyforge_project:
996
996
  rubygems_version: 2.0.5
997
997
  signing_key:
998
998
  specification_version: 4
999
- summary: 'Forge: A CMS for Rapid Application Development'
999
+ summary: ! 'Forge: A CMS for Rapid Application Development'
1000
1000
  test_files: []