forge-cli 0.0.18 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +106 -0
- data/bin/cucumber +16 -0
- data/bin/erubis +16 -0
- data/bin/htmldiff +16 -0
- data/bin/ldiff +16 -0
- data/bin/rackup +16 -0
- data/bin/rake +16 -0
- data/bin/rdoc +16 -0
- data/bin/ri +16 -0
- data/bin/sprockets +16 -0
- data/bin/thor +16 -0
- data/bin/tilt +16 -0
- data/bin/tt +16 -0
- data/lib/forge-cli.rb +1 -0
- data/lib/forge-cli/application_creator.rb +25 -6
- data/lib/forge-cli/controller_module_includer.rb +43 -0
- data/lib/forge-cli/module_installer.rb +18 -13
- data/lib/forge-cli/modules/banners/routes.rb +1 -1
- data/lib/forge-cli/modules/base/forge_routes.rb +4 -4
- data/lib/forge-cli/modules/base/manifest.yml +9 -4
- data/lib/forge-cli/modules/base/post_hooks.rb +9 -2
- data/lib/forge-cli/modules/base/routes.rb +4 -4
- data/lib/forge-cli/modules/dispatches/forge_routes.rb +2 -2
- data/lib/forge-cli/modules/dispatches/manifest.yml +2 -1
- data/lib/forge-cli/modules/ecommerce/manifest.yml +5 -1
- data/lib/forge-cli/modules/ecommerce/post_hooks.rb +13 -21
- data/lib/forge-cli/modules/events/routes.rb +1 -1
- data/lib/forge-cli/modules/posts/manifest.yml +4 -1
- data/lib/forge-cli/modules/posts/post_hooks.rb +9 -17
- data/lib/forge-cli/modules/posts/routes.rb +1 -1
- data/lib/forge-cli/modules/videos/routes.rb +1 -1
- data/lib/forge-cli/version.rb +2 -2
- data/lib/forge/Gemfile +3 -9
- data/lib/forge/Gemfile.lock +214 -210
- data/lib/forge/app/controllers/forge/help_topics_controller.rb +2 -2
- data/lib/forge/app/controllers/forge/posts_controller.rb +1 -0
- data/lib/forge/app/controllers/forge/products_controller.rb +0 -4
- data/lib/forge/app/controllers/forge/users_controller.rb +0 -1
- data/lib/forge/app/controllers/forge_controller.rb +7 -6
- data/lib/forge/app/controllers/posts_controller.rb +0 -2
- data/lib/forge/app/controllers/sessions_controller.rb +2 -3
- data/lib/forge/app/helpers/forge_helper.rb +2 -2
- data/lib/forge/app/models/address.rb +3 -0
- data/lib/forge/app/models/asset.rb +9 -10
- data/lib/forge/app/models/banner.rb +3 -1
- data/lib/forge/app/models/comment.rb +17 -2
- data/lib/forge/app/models/comment_subscriber.rb +3 -0
- data/lib/forge/app/models/contact.rb +3 -0
- data/lib/forge/app/models/country.rb +5 -2
- data/lib/forge/app/models/dispatch.rb +5 -2
- data/lib/forge/app/models/dispatch_bounce.rb +3 -0
- data/lib/forge/app/models/dispatch_link.rb +4 -1
- data/lib/forge/app/models/dispatch_link_click.rb +4 -0
- data/lib/forge/app/models/dispatch_open.rb +5 -1
- data/lib/forge/app/models/dispatch_unsubscribe.rb +4 -0
- data/lib/forge/app/models/event.rb +3 -1
- data/lib/forge/app/models/gallery.rb +4 -1
- data/lib/forge/app/models/help_topic.rb +4 -1
- data/lib/forge/app/models/line_item.rb +2 -2
- data/lib/forge/app/models/order.rb +1 -1
- data/lib/forge/app/models/order_transaction.rb +3 -0
- data/lib/forge/app/models/page.rb +5 -5
- data/lib/forge/app/models/photo.rb +5 -1
- data/lib/forge/app/models/post.rb +3 -1
- data/lib/forge/app/models/post_category.rb +4 -0
- data/lib/forge/app/models/product.rb +4 -2
- data/lib/forge/app/models/product_category.rb +4 -1
- data/lib/forge/app/models/product_image.rb +4 -0
- data/lib/forge/app/models/province.rb +4 -1
- data/lib/forge/app/models/queued_dispatch.rb +7 -4
- data/lib/forge/app/models/role.rb +3 -0
- data/lib/forge/app/models/sale.rb +2 -0
- data/lib/forge/app/models/subscriber.rb +4 -0
- data/lib/forge/app/models/subscriber_group.rb +4 -0
- data/lib/forge/app/models/subscriber_group_member.rb +4 -0
- data/lib/forge/app/models/tax_rate.rb +5 -2
- data/lib/forge/app/models/user.rb +1 -2
- data/lib/forge/app/models/video.rb +2 -0
- data/lib/forge/app/models/video_feed.rb +2 -2
- data/lib/forge/app/views/forge/assets/_asset.html.haml +1 -1
- data/lib/forge/app/views/forge/posts/_post.html.haml +5 -2
- data/lib/forge/app/views/forge/settings/_ecommerce.html.haml +4 -0
- data/lib/forge/app/views/forge/subscribers/_subscriber.html.haml +2 -2
- data/lib/forge/app/views/user_mailer/approved.html.haml +1 -1
- data/lib/forge/config/application.rb +3 -9
- data/lib/forge/config/database.yml.template +30 -0
- data/lib/forge/config/environments/development.rb +3 -7
- data/lib/forge/config/environments/production.rb +6 -0
- data/lib/forge/config/environments/test.rb +5 -3
- data/lib/forge/config/initializers/ckeditor.rb +15 -143
- data/lib/forge/config/initializers/devise.rb +12 -2
- data/lib/forge/config/initializers/ecommerce.rb +1 -1
- data/lib/forge/config/initializers/secret_token.rb +1 -10
- data/lib/forge/config/routes.rb +7 -11
- data/lib/forge/config/settings.yml +82 -5
- data/lib/forge/config/sitemap.yml +3 -1
- data/lib/forge/db/migrate/20130405172031_create_products_tax_rates.rb +15 -0
- data/lib/forge/db/migrate/{20130405172040_create_subscribers copy.rb → 20130405172040_create_subscribers.rb} +0 -0
- data/lib/forge/db/seeds.rb +304 -298
- data/lib/forge/doc/update_to_rails4_notes.md +15 -0
- data/lib/forge/lib/assets/javascripts/forge/features/help.js.erb +5 -4
- data/lib/forge/lib/assets/javascripts/forge/forge_manifest.js.erb +2 -2
- data/lib/forge/lib/assets/stylesheets/forge/forge.ui.css.scss +4 -3
- data/lib/forge/lib/forge/can_use_asset.rb +5 -7
- data/lib/forge/lib/forge/config/ecommerce.rb +3 -3
- data/lib/forge/lib/forge/shared_controller_methods/ecommerce.rb +3 -3
- data/lib/forge/lib/generators/forge/scaffold/USAGE +1 -1
- data/lib/forge/lib/tasks/forge.rake +5 -10
- data/lib/forge/public/500.html +1 -0
- data/lib/forge/public/javascripts/ckeditor/config.js +0 -1
- metadata +39 -39
- data/README.rdoc +0 -4
- data/lib/forge/app/models/comment_observer.rb +0 -9
- data/lib/forge/app/sweepers/page_sweeper.rb +0 -11
@@ -9,7 +9,7 @@ resources :posts, :only => [:index, :show] do
|
|
9
9
|
get :category
|
10
10
|
end
|
11
11
|
end
|
12
|
-
match 'posts/:month/:year', :controller => 'posts', :action => 'index'
|
12
|
+
match 'posts/:month/:year', :controller => 'posts', :action => 'index', :via => :get
|
13
13
|
##############
|
14
14
|
# END POSTS ##
|
15
15
|
##############
|
@@ -21,8 +21,8 @@ resource :settings, :only => [:show, :update]
|
|
21
21
|
|
22
22
|
resources :help_topics, :only => [:index, :show]
|
23
23
|
|
24
|
-
match "help", :controller => :help_topics, :action => :index
|
25
|
-
match "help/search", :controller => :help_topics, :action => :search
|
26
|
-
match "help/:slug", :controller => :help_topics, :action => :show
|
24
|
+
match "help", :controller => :help_topics, :action => :index, :via => :get
|
25
|
+
match "help/search", :controller => :help_topics, :action => :search, :via => :post
|
26
|
+
match "help/:slug", :controller => :help_topics, :action => :show, :via => :get
|
27
27
|
|
28
|
-
root :to => "index#index"
|
28
|
+
root :to => "index#index"
|
@@ -3,7 +3,6 @@ files:
|
|
3
3
|
- 'app/models/ability.rb'
|
4
4
|
- 'app/models/asset.rb'
|
5
5
|
- 'app/models/comment.rb'
|
6
|
-
- 'app/models/comment_observer.rb'
|
7
6
|
- 'app/models/comment_subscriber.rb'
|
8
7
|
- 'app/models/contact.rb'
|
9
8
|
- 'app/models/help_topic.rb'
|
@@ -99,8 +98,6 @@ files:
|
|
99
98
|
|
100
99
|
|
101
100
|
# Various
|
102
|
-
- 'db/help/assets_index.help'
|
103
|
-
- 'db/help/visual_editor.help'
|
104
101
|
- 'doc/i18n.md'
|
105
102
|
- 'lib/forge.rb'
|
106
103
|
- 'lib/forge/can_be_foreign.rb'
|
@@ -112,6 +109,8 @@ files:
|
|
112
109
|
- 'lib/generators/forge'
|
113
110
|
- 'lib/tasks/forge.rake'
|
114
111
|
- 'lib/templates/active_record/model/model.rb'
|
112
|
+
- 'config/sitemap.yml'
|
113
|
+
- 'db/seeds.rb'
|
115
114
|
- 'Gemfile'
|
116
115
|
|
117
116
|
|
@@ -128,5 +127,11 @@ files:
|
|
128
127
|
- 'vendor/assets/stylesheets/fancybox.css.scss'
|
129
128
|
- 'vendor/assets/stylesheets/jscrollpane.css.scss'
|
130
129
|
|
130
|
+
# Help
|
131
|
+
- 'db/help/assets_index.help'
|
132
|
+
- 'db/help/visual_editor.help'
|
133
|
+
- 'db/help/pages_index.help'
|
134
|
+
- 'db/help/pages_new.help'
|
135
|
+
|
131
136
|
migrations:
|
132
|
-
- create_base_forge
|
137
|
+
- create_base_forge
|
@@ -10,7 +10,14 @@ class ForgeCLI
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def fix_gemfile
|
13
|
-
if RUBY_VERSION.to_f > 1.
|
13
|
+
if RUBY_VERSION.to_f > 1.9
|
14
|
+
gemfile_content = File.read(File.join(@app, 'Gemfile'))
|
15
|
+
new_content = gemfile_content.gsub("gem 'forge-rad'", "gem 'forge-rad20'")
|
16
|
+
|
17
|
+
File.open(File.join(@app, 'Gemfile'), 'w') do |f|
|
18
|
+
f.puts new_content
|
19
|
+
end
|
20
|
+
elsif RUBY_VERSION.to_f > 1.8
|
14
21
|
gemfile_content = File.read(File.join(@app, 'Gemfile'))
|
15
22
|
new_content = gemfile_content.gsub("gem 'capybara', '~> 2.0.0'", "gem 'capybara'")
|
16
23
|
new_content = gemfile_content.gsub("gem 'shoulda-matchers', '~> 2.0.0'", "gem 'shoulda-matchers'")
|
@@ -27,4 +34,4 @@ class ForgeCLI
|
|
27
34
|
File.dirname(__FILE__)
|
28
35
|
end
|
29
36
|
end
|
30
|
-
end
|
37
|
+
end
|
@@ -10,7 +10,7 @@ devise_scope :user do
|
|
10
10
|
get "/register" => "devise/registrations#new"
|
11
11
|
end
|
12
12
|
|
13
|
-
match "/sitemap", :controller => 'index', :action => 'sitemap'
|
14
|
-
match '/pages/preview', :controller => 'pages', :action => 'preview'
|
15
|
-
match '*slugs', :controller => 'pages', :action => 'show'
|
16
|
-
root :to => "index#index"
|
13
|
+
match "/sitemap", :controller => 'index', :action => 'sitemap', :via => :get
|
14
|
+
match '/pages/preview', :controller => 'pages', :action => 'preview', :via => :get
|
15
|
+
match '*slugs', :controller => 'pages', :action => 'show', :via => :get
|
16
|
+
root :to => "index#index"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
resources :dispatches do
|
2
2
|
get :queue, :chart_data, :opens, :clicks, :unsubscribes, :on => :member
|
3
|
-
|
3
|
+
patch :test_send, :send_all, :on => :member
|
4
4
|
resources :links, :controller => :dispatch_links, :only => [:index]
|
5
5
|
resources :opens, :controller => :dispatch_opens, :only => [:index]
|
6
|
-
end
|
6
|
+
end
|
@@ -17,9 +17,10 @@ files:
|
|
17
17
|
- 'app/views/forge/dispatch_clicks'
|
18
18
|
- 'app/views/forge/dispatches'
|
19
19
|
- 'app/views/forge/shared/menu_items/_dispatches.html.haml'
|
20
|
+
- 'app/views/dispatch_mailer/dispatch.html.haml'
|
20
21
|
|
21
22
|
delete:
|
22
23
|
- 'app/views/forge/shared/menu_items/_subscribers.html.haml'
|
23
24
|
|
24
25
|
migrations:
|
25
|
-
- create_dispatches
|
26
|
+
- create_dispatches
|
@@ -33,9 +33,12 @@ files:
|
|
33
33
|
- 'app/views/forge/products'
|
34
34
|
- 'app/views/forge/sales'
|
35
35
|
- 'app/views/forge/tax_rates'
|
36
|
+
- 'app/views/forge/shared/menu_items/_products.html.haml'
|
36
37
|
- 'lib/forge/shared_controller_methods/ecommerce.rb'
|
37
38
|
- 'lib/models/order'
|
38
39
|
- 'lib/forge/config/ecommerce.rb'
|
40
|
+
- 'db/help/products_new.help'
|
41
|
+
- 'config/initializers/ecommerce.rb'
|
39
42
|
|
40
43
|
migrations:
|
41
44
|
- create_addresses
|
@@ -45,6 +48,7 @@ migrations:
|
|
45
48
|
- create_products
|
46
49
|
- create_product_categories
|
47
50
|
- create_product_images
|
51
|
+
- create_products_tax_rates
|
48
52
|
- create_provinces
|
49
53
|
- create_sales
|
50
|
-
- create_tax_rates
|
54
|
+
- create_tax_rates
|
@@ -1,34 +1,26 @@
|
|
1
1
|
class ForgeCLI::EcommercePostHooks < ForgeCLI::PostHooks
|
2
2
|
def run!
|
3
|
+
add_routes
|
4
|
+
add_controller_module
|
5
|
+
|
6
|
+
STDOUT.puts "Adding config..."
|
7
|
+
require_addon(:ecommerce)
|
8
|
+
end
|
9
|
+
|
10
|
+
def add_routes
|
3
11
|
STDOUT.puts "Adding Routes..."
|
4
12
|
ri = ForgeCLI::RouteInstaller.new(@app, module_path)
|
5
13
|
ri.install_routes
|
6
14
|
ri.install_routes(:forge)
|
7
|
-
|
8
|
-
STDOUT.puts "Adding eCommerce controller methods..."
|
9
|
-
content = app_controller_content.gsub(
|
10
|
-
'class ApplicationController < ActionController::Base',
|
11
|
-
"class ApplicationController < ActionController::Base\n include Forge::Controllers::ECommerce\n"
|
12
|
-
)
|
13
|
-
content = "require 'forge/shared_controller_methods/ecommerce.rb'\n" + content
|
14
|
-
File.open(app_controller_path, 'w') do |f|
|
15
|
-
f.puts content
|
16
|
-
end
|
17
|
-
|
18
|
-
STDOUT.puts "Adding config requires..."
|
19
|
-
require_addon(:ecommerce)
|
20
15
|
end
|
21
16
|
|
17
|
+
def add_controller_module
|
18
|
+
STDOUT.puts "Adding controller methods..."
|
19
|
+
cmi = ForgeCLI::ControllerModuleIncluder.new(@app, 'ecommerce')
|
20
|
+
cmi.run!
|
21
|
+
end
|
22
22
|
|
23
23
|
def module_path
|
24
24
|
File.dirname(__FILE__)
|
25
25
|
end
|
26
|
-
|
27
|
-
def app_controller_path
|
28
|
-
File.join(@app, 'app', 'controllers', 'application_controller.rb')
|
29
|
-
end
|
30
|
-
|
31
|
-
def app_controller_content
|
32
|
-
@app_controller_content ||= File.read(app_controller_path)
|
33
|
-
end
|
34
26
|
end
|
@@ -9,7 +9,10 @@ files:
|
|
9
9
|
- app/models/post_category.rb
|
10
10
|
- lib/forge/shared_controller_methods/posts.rb
|
11
11
|
- app/views/forge/shared/menu_items/_posts.html.haml
|
12
|
+
- db/help/comments_index.help
|
13
|
+
- db/help/posts_index.help
|
14
|
+
- db/help/posts_new.help
|
12
15
|
|
13
16
|
migrations:
|
14
17
|
- create_posts
|
15
|
-
- create_post_categories
|
18
|
+
- create_post_categories
|
@@ -1,31 +1,23 @@
|
|
1
1
|
class ForgeCLI::PostPostHooks < ForgeCLI::PostHooks
|
2
2
|
def run!
|
3
|
+
add_routes
|
4
|
+
add_controller_module
|
5
|
+
end
|
6
|
+
|
7
|
+
def add_routes
|
3
8
|
STDOUT.puts "Adding Routes..."
|
4
9
|
ri = ForgeCLI::RouteInstaller.new(@app, module_path)
|
5
10
|
ri.install_routes
|
6
11
|
ri.install_routes(:forge)
|
12
|
+
end
|
7
13
|
|
14
|
+
def add_controller_module
|
8
15
|
STDOUT.puts "Adding Posts controller methods..."
|
9
|
-
|
10
|
-
|
11
|
-
"class ApplicationController < ActionController::Base\n include Forge::Controllers::Posts\n"
|
12
|
-
)
|
13
|
-
content = "require 'forge/shared_controller_methods/posts.rb'\n" + content
|
14
|
-
File.open(app_controller_path, 'w') do |f|
|
15
|
-
f.puts content
|
16
|
-
end
|
16
|
+
cmi = ForgeCLI::ControllerModuleIncluder.new(@app, 'posts')
|
17
|
+
cmi.run!
|
17
18
|
end
|
18
19
|
|
19
|
-
|
20
20
|
def module_path
|
21
21
|
File.dirname(__FILE__)
|
22
22
|
end
|
23
|
-
|
24
|
-
def app_controller_path
|
25
|
-
File.join(@app, 'app', 'controllers', 'application_controller.rb')
|
26
|
-
end
|
27
|
-
|
28
|
-
def app_controller_content
|
29
|
-
@app_controller_content ||= File.read(app_controller_path)
|
30
|
-
end
|
31
23
|
end
|
@@ -9,7 +9,7 @@ resources :posts, :only => [:index, :show] do
|
|
9
9
|
get :category
|
10
10
|
end
|
11
11
|
end
|
12
|
-
match 'posts/:month/:year', :controller => 'posts', :action => 'index'
|
12
|
+
match 'posts/:month/:year', :controller => 'posts', :action => 'index', :via => :get
|
13
13
|
##############
|
14
14
|
# END POSTS ##
|
15
15
|
##############
|
@@ -9,7 +9,7 @@ resources :posts, :only => [:index, :show] do
|
|
9
9
|
get :category
|
10
10
|
end
|
11
11
|
end
|
12
|
-
match 'posts/:month/:year', :controller => 'posts', :action => 'index'
|
12
|
+
match 'posts/:month/:year', :controller => 'posts', :action => 'index', :via => :get
|
13
13
|
##############
|
14
14
|
# END POSTS ##
|
15
15
|
##############
|
data/lib/forge-cli/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
class ForgeCLI
|
2
|
-
VERSION = '0.0
|
3
|
-
end
|
2
|
+
VERSION = '0.1.0'
|
3
|
+
end
|
data/lib/forge/Gemfile
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
3
|
# Most dependencies come from this gem
|
4
|
-
gem 'forge-
|
4
|
+
gem 'forge-rad20', :require => 'forge-rad', :git => "git@github.com:factore/forge-rad20.git"
|
5
5
|
|
6
6
|
# Extra Plugins
|
7
7
|
gem 'exception_notification', :require => 'exception_notifier'
|
8
|
-
gem 'rails-settings', :git => 'git://github.com/devlinzed/rails-settings.git'
|
9
8
|
gem 'launchy'
|
10
9
|
gem 'nokogiri', '1.5.10'
|
10
|
+
gem 'pg'
|
11
11
|
|
12
12
|
# The Groups
|
13
13
|
group :development, :test do
|
@@ -24,13 +24,7 @@ group :test do
|
|
24
24
|
gem 'zentest-without-autotest', '4.4.0'
|
25
25
|
end
|
26
26
|
|
27
|
-
group :assets do
|
28
|
-
gem 'coffee-rails'
|
29
|
-
gem 'sass-rails'
|
30
|
-
gem 'uglifier', ' >= 1.0.3'
|
31
|
-
end
|
32
|
-
|
33
27
|
group :darwin do
|
34
28
|
gem 'growl'
|
35
29
|
gem 'rb-fsevent'
|
36
|
-
end
|
30
|
+
end
|
data/lib/forge/Gemfile.lock
CHANGED
@@ -1,34 +1,72 @@
|
|
1
1
|
GIT
|
2
|
-
remote: git
|
3
|
-
revision:
|
2
|
+
remote: git@github.com:factore/forge-rad20.git
|
3
|
+
revision: c6801de87058fd3583d2a84e3733de1b92622880
|
4
4
|
specs:
|
5
|
-
|
6
|
-
|
5
|
+
forge-rad20 (4.0.0.1)
|
6
|
+
aasm (~> 3.0.16)
|
7
|
+
active_shipping (~> 0.9.14)
|
8
|
+
activemerchant (~> 1.29.3)
|
9
|
+
acts-as-taggable-on (~> 2.4)
|
10
|
+
awesome_nested_set (~> 3.0.0.rc.1)
|
11
|
+
aws-s3 (~> 0.6.3)
|
12
|
+
aws-sdk (~> 1.8.1.2)
|
13
|
+
cache_trasher (~> 0.0.1)
|
14
|
+
cancan (~> 1.6.9)
|
15
|
+
capistrano (~> 2.14.1)
|
16
|
+
ckeditor (~> 4.0.6)
|
17
|
+
coffee-rails (~> 4.0.0)
|
18
|
+
delayed_job (~> 4.0.0)
|
19
|
+
delayed_job_active_record (~> 4.0.0)
|
20
|
+
devise (~> 3.1.0)
|
21
|
+
dynamic_form (~> 1.1.4)
|
22
|
+
gravatar_image_tag (~> 1.1.3)
|
23
|
+
guard (~> 1.6.2)
|
24
|
+
guard-rspec (~> 2.4.0)
|
25
|
+
guard-spork (~> 1.4.2)
|
26
|
+
haml (~> 4.0.3)
|
27
|
+
hpricot (~> 0.8.6)
|
28
|
+
httparty (~> 0.10.2)
|
29
|
+
jquery-rails (~> 3.0.4)
|
30
|
+
jquery-ui-rails (~> 4.0.4)
|
31
|
+
later_dude (~> 0.3.3)
|
32
|
+
mediaelement_rails (~> 0.4.0)
|
33
|
+
mime-types (~> 1.21)
|
34
|
+
money (~> 5.0.0)
|
35
|
+
paperclip (~> 3.3.0)
|
36
|
+
protected_attributes (~> 1.0.3)
|
37
|
+
rails (~> 4.0.0)
|
38
|
+
rails-observers (~> 0.1.1)
|
39
|
+
rails-settings-cached (~> 0.3)
|
40
|
+
rdiscount (~> 2.0.7)
|
41
|
+
sass-rails (~> 4.0.0)
|
42
|
+
simple-rss (~> 1.2.3)
|
43
|
+
uglifier (>= 1.3.0)
|
44
|
+
uuidtools (~> 2.1.3)
|
45
|
+
will_paginate (~> 3.0.4)
|
46
|
+
yaml_db (~> 0.2.3)
|
47
|
+
zencoder (~> 2.4.4)
|
48
|
+
zencoder-fetcher (~> 0.2.8)
|
7
49
|
|
8
50
|
GEM
|
9
|
-
remote:
|
51
|
+
remote: https://rubygems.org/
|
10
52
|
specs:
|
11
|
-
aasm (3.0.
|
12
|
-
actionmailer (
|
13
|
-
actionpack (=
|
14
|
-
mail (~> 2.
|
15
|
-
actionpack (
|
16
|
-
|
17
|
-
|
18
|
-
builder (~> 3.0.0)
|
53
|
+
aasm (3.0.22)
|
54
|
+
actionmailer (4.0.0)
|
55
|
+
actionpack (= 4.0.0)
|
56
|
+
mail (~> 2.5.3)
|
57
|
+
actionpack (4.0.0)
|
58
|
+
activesupport (= 4.0.0)
|
59
|
+
builder (~> 3.1.0)
|
19
60
|
erubis (~> 2.7.0)
|
20
|
-
|
21
|
-
rack (~>
|
22
|
-
|
23
|
-
rack-test (~> 0.6.1)
|
24
|
-
sprockets (~> 2.2.1)
|
25
|
-
active_shipping (0.9.14)
|
61
|
+
rack (~> 1.5.2)
|
62
|
+
rack-test (~> 0.6.2)
|
63
|
+
active_shipping (0.9.15)
|
26
64
|
active_utils (>= 1.0.1)
|
27
65
|
activesupport (>= 2.3.5)
|
28
66
|
builder
|
29
67
|
i18n
|
30
68
|
json (>= 1.5.1)
|
31
|
-
active_utils (
|
69
|
+
active_utils (2.0.0)
|
32
70
|
activesupport (>= 2.3.11)
|
33
71
|
i18n
|
34
72
|
activemerchant (1.29.3)
|
@@ -39,128 +77,88 @@ GEM
|
|
39
77
|
json (>= 1.5.1)
|
40
78
|
money
|
41
79
|
nokogiri
|
42
|
-
activemodel (
|
43
|
-
activesupport (=
|
44
|
-
builder (~> 3.
|
45
|
-
activerecord (
|
46
|
-
activemodel (=
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
80
|
+
activemodel (4.0.0)
|
81
|
+
activesupport (= 4.0.0)
|
82
|
+
builder (~> 3.1.0)
|
83
|
+
activerecord (4.0.0)
|
84
|
+
activemodel (= 4.0.0)
|
85
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
86
|
+
activesupport (= 4.0.0)
|
87
|
+
arel (~> 4.0.0)
|
88
|
+
activerecord-deprecated_finders (1.0.3)
|
89
|
+
activesupport (4.0.0)
|
90
|
+
i18n (~> 0.6, >= 0.6.4)
|
91
|
+
minitest (~> 4.2)
|
92
|
+
multi_json (~> 1.3)
|
93
|
+
thread_safe (~> 0.1)
|
94
|
+
tzinfo (~> 0.3.37)
|
95
|
+
acts-as-taggable-on (2.4.1)
|
96
|
+
rails (>= 3, < 5)
|
97
|
+
addressable (2.3.5)
|
98
|
+
arel (4.0.0)
|
99
|
+
atomic (1.1.13)
|
100
|
+
awesome_nested_set (3.0.0.rc.1)
|
101
|
+
activerecord (~> 4.0.0)
|
63
102
|
aws-s3 (0.6.3)
|
64
103
|
builder
|
65
104
|
mime-types
|
66
105
|
xml-simple
|
67
|
-
aws-sdk (1.8.1.
|
106
|
+
aws-sdk (1.8.1.3)
|
68
107
|
json (~> 1.4)
|
69
108
|
nokogiri (>= 1.4.4)
|
70
109
|
uuidtools (~> 2.1)
|
71
|
-
bcrypt-ruby (3.
|
72
|
-
|
73
|
-
mocha (= 0.10.5)
|
74
|
-
builder (3.0.4)
|
110
|
+
bcrypt-ruby (3.1.2)
|
111
|
+
builder (3.1.4)
|
75
112
|
cache_trasher (0.0.1)
|
76
|
-
cancan (1.6.
|
77
|
-
capistrano (2.14.
|
113
|
+
cancan (1.6.10)
|
114
|
+
capistrano (2.14.2)
|
78
115
|
highline
|
79
116
|
net-scp (>= 1.0.0)
|
80
117
|
net-sftp (>= 2.0.0)
|
81
118
|
net-ssh (>= 2.0.14)
|
82
119
|
net-ssh-gateway (>= 1.1.0)
|
83
|
-
capybara (2.0.
|
120
|
+
capybara (2.0.3)
|
84
121
|
mime-types (>= 1.16)
|
85
122
|
nokogiri (>= 1.3.3)
|
86
123
|
rack (>= 1.0.0)
|
87
124
|
rack-test (>= 0.5.4)
|
88
125
|
selenium-webdriver (~> 2.0)
|
89
126
|
xpath (~> 1.0.0)
|
90
|
-
childprocess (0.3.
|
127
|
+
childprocess (0.3.9)
|
91
128
|
ffi (~> 1.0, >= 1.0.11)
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
coderay (1.0.
|
97
|
-
coffee-rails (
|
129
|
+
ckeditor (4.0.6)
|
130
|
+
mime-types
|
131
|
+
orm_adapter
|
132
|
+
cocaine (0.4.2)
|
133
|
+
coderay (1.0.9)
|
134
|
+
coffee-rails (4.0.0)
|
98
135
|
coffee-script (>= 2.2.0)
|
99
|
-
railties (
|
136
|
+
railties (>= 4.0.0.beta, < 5.0)
|
100
137
|
coffee-script (2.2.0)
|
101
138
|
coffee-script-source
|
102
139
|
execjs
|
103
|
-
coffee-script-source (1.
|
104
|
-
delayed_job (
|
105
|
-
activesupport (
|
106
|
-
delayed_job_active_record (0.
|
107
|
-
activerecord (>=
|
108
|
-
delayed_job (
|
109
|
-
devise (
|
140
|
+
coffee-script-source (1.6.3)
|
141
|
+
delayed_job (4.0.0)
|
142
|
+
activesupport (>= 3.0, < 4.1)
|
143
|
+
delayed_job_active_record (4.0.0)
|
144
|
+
activerecord (>= 3.0, < 4.1)
|
145
|
+
delayed_job (>= 3.0, < 4.1)
|
146
|
+
devise (3.1.0)
|
110
147
|
bcrypt-ruby (~> 3.0)
|
111
148
|
orm_adapter (~> 0.1)
|
112
|
-
railties (
|
113
|
-
|
114
|
-
|
149
|
+
railties (>= 3.2.6, < 5)
|
150
|
+
thread_safe (~> 0.1)
|
151
|
+
warden (~> 1.2.3)
|
152
|
+
diff-lcs (1.2.4)
|
115
153
|
dynamic_form (1.1.4)
|
116
154
|
erubis (2.7.0)
|
117
|
-
exception_notification (
|
155
|
+
exception_notification (4.0.0)
|
118
156
|
actionmailer (>= 3.0.4)
|
119
|
-
|
120
|
-
|
121
|
-
faker (1.
|
157
|
+
activesupport (>= 3.0.4)
|
158
|
+
execjs (2.0.1)
|
159
|
+
faker (1.2.0)
|
122
160
|
i18n (~> 0.5)
|
123
|
-
|
124
|
-
ffi (1.3.1)
|
125
|
-
forge-rad (3.2.12.8)
|
126
|
-
aasm (= 3.0.16)
|
127
|
-
active_shipping (= 0.9.14)
|
128
|
-
activemerchant (= 1.29.3)
|
129
|
-
acts-as-taggable-on (= 2.3.3)
|
130
|
-
acts_as_ferret (= 0.5.4)
|
131
|
-
aws-s3 (= 0.6.3)
|
132
|
-
aws-sdk (= 1.8.1.2)
|
133
|
-
cache_trasher (= 0.0.1)
|
134
|
-
cancan (= 1.6.9)
|
135
|
-
capistrano (= 2.14.1)
|
136
|
-
delayed_job_active_record (= 0.4.1)
|
137
|
-
devise (= 2.2.3)
|
138
|
-
dynamic_form (= 1.1.4)
|
139
|
-
gravatar_image_tag (= 1.1.3)
|
140
|
-
guard (= 1.6.2)
|
141
|
-
guard-rspec (= 2.4.0)
|
142
|
-
guard-spork (= 1.4.2)
|
143
|
-
haml (= 3.1.7)
|
144
|
-
hpricot (= 0.8.6)
|
145
|
-
httparty (= 0.10.2)
|
146
|
-
jquery-rails (= 2.1.4)
|
147
|
-
later_dude (= 0.3.3)
|
148
|
-
mediaelement_rails (= 0.4.0)
|
149
|
-
mime-types (= 1.21)
|
150
|
-
money (= 5.0.0)
|
151
|
-
mysql2 (= 0.3.11)
|
152
|
-
nested_set (= 1.7.1)
|
153
|
-
paperclip (= 2.8.0)
|
154
|
-
rack (= 1.4.5)
|
155
|
-
rails (= 3.2.12)
|
156
|
-
rake (= 0.9.2)
|
157
|
-
rdiscount (= 2.0.7)
|
158
|
-
simple-rss (= 1.2.3)
|
159
|
-
uuidtools (= 2.1.3)
|
160
|
-
will_paginate (= 3.0.4)
|
161
|
-
yaml_db (= 0.2.3)
|
162
|
-
zencoder (= 2.4.4)
|
163
|
-
zencoder-fetcher (= 0.2.8)
|
161
|
+
ffi (1.9.0)
|
164
162
|
gravatar_image_tag (1.1.3)
|
165
163
|
growl (1.0.3)
|
166
164
|
guard (1.6.2)
|
@@ -169,153 +167,161 @@ GEM
|
|
169
167
|
pry (>= 0.9.10)
|
170
168
|
terminal-table (>= 1.4.3)
|
171
169
|
thor (>= 0.14.6)
|
172
|
-
guard-rspec (2.4.
|
170
|
+
guard-rspec (2.4.1)
|
173
171
|
guard (>= 1.1)
|
174
172
|
rspec (~> 2.11)
|
175
|
-
guard-spork (1.4.
|
173
|
+
guard-spork (1.4.3)
|
176
174
|
childprocess (>= 0.2.3)
|
177
175
|
guard (>= 1.1)
|
178
176
|
spork (>= 0.8.4)
|
179
|
-
haml (
|
180
|
-
|
181
|
-
|
177
|
+
haml (4.0.3)
|
178
|
+
tilt
|
179
|
+
highline (1.6.19)
|
180
|
+
hike (1.2.3)
|
182
181
|
hpricot (0.8.6)
|
183
182
|
httparty (0.10.2)
|
184
183
|
multi_json (~> 1.0)
|
185
184
|
multi_xml (>= 0.5.2)
|
186
|
-
i18n (0.6.
|
187
|
-
|
188
|
-
jquery-rails (2.1.4)
|
185
|
+
i18n (0.6.5)
|
186
|
+
jquery-rails (3.0.4)
|
189
187
|
railties (>= 3.0, < 5.0)
|
190
188
|
thor (>= 0.14, < 2.0)
|
191
|
-
|
189
|
+
jquery-ui-rails (4.0.4)
|
190
|
+
jquery-rails
|
191
|
+
railties (>= 3.1.0)
|
192
|
+
json (1.8.0)
|
192
193
|
later_dude (0.3.3)
|
193
|
-
launchy (2.
|
194
|
+
launchy (2.3.0)
|
194
195
|
addressable (~> 2.3)
|
195
|
-
listen (
|
196
|
-
|
197
|
-
|
198
|
-
|
196
|
+
listen (1.3.1)
|
197
|
+
rb-fsevent (>= 0.9.3)
|
198
|
+
rb-inotify (>= 0.9)
|
199
|
+
rb-kqueue (>= 0.2)
|
200
|
+
lumberjack (1.0.4)
|
201
|
+
mail (2.5.4)
|
199
202
|
mime-types (~> 1.16)
|
200
203
|
treetop (~> 1.4.8)
|
201
204
|
mediaelement_rails (0.4.0)
|
202
205
|
jquery-rails (>= 1.0)
|
203
206
|
railties (>= 3.1)
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
mocha (0.10.5)
|
208
|
-
metaclass (~> 0.0.1)
|
207
|
+
method_source (0.8.2)
|
208
|
+
mime-types (1.25)
|
209
|
+
minitest (4.7.5)
|
209
210
|
money (5.0.0)
|
210
211
|
i18n (~> 0.4)
|
211
212
|
json
|
212
|
-
multi_json (1.
|
213
|
-
multi_xml (0.5.
|
214
|
-
|
215
|
-
nested_set (1.7.1)
|
216
|
-
activerecord (>= 3.0.0)
|
217
|
-
railties (>= 3.0.0)
|
218
|
-
net-scp (1.1.0)
|
213
|
+
multi_json (1.8.0)
|
214
|
+
multi_xml (0.5.5)
|
215
|
+
net-scp (1.1.2)
|
219
216
|
net-ssh (>= 2.6.5)
|
220
|
-
net-sftp (2.1.
|
217
|
+
net-sftp (2.1.2)
|
221
218
|
net-ssh (>= 2.6.5)
|
222
|
-
net-ssh (2.6.
|
219
|
+
net-ssh (2.6.8)
|
223
220
|
net-ssh-gateway (1.2.0)
|
224
221
|
net-ssh (>= 2.6.5)
|
225
|
-
nokogiri (1.5.
|
222
|
+
nokogiri (1.5.10)
|
226
223
|
orm_adapter (0.4.0)
|
227
|
-
paperclip (
|
228
|
-
|
229
|
-
|
230
|
-
|
224
|
+
paperclip (3.3.1)
|
225
|
+
activemodel (>= 3.0.0)
|
226
|
+
activerecord (>= 3.0.0)
|
227
|
+
activesupport (>= 3.0.0)
|
228
|
+
cocaine (~> 0.4.0)
|
231
229
|
mime-types
|
230
|
+
pg (0.16.0)
|
232
231
|
polyglot (0.3.3)
|
233
|
-
|
232
|
+
protected_attributes (1.0.3)
|
233
|
+
activemodel (>= 4.0.0, < 5.0)
|
234
|
+
pry (0.9.12.2)
|
234
235
|
coderay (~> 1.0.5)
|
235
236
|
method_source (~> 0.8)
|
236
237
|
slop (~> 3.4)
|
237
|
-
rack (1.
|
238
|
-
rack-cache (1.2)
|
239
|
-
rack (>= 0.4)
|
240
|
-
rack-ssl (1.3.3)
|
241
|
-
rack
|
238
|
+
rack (1.5.2)
|
242
239
|
rack-test (0.6.2)
|
243
240
|
rack (>= 1.0)
|
244
|
-
rails (
|
245
|
-
actionmailer (=
|
246
|
-
actionpack (=
|
247
|
-
activerecord (=
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
241
|
+
rails (4.0.0)
|
242
|
+
actionmailer (= 4.0.0)
|
243
|
+
actionpack (= 4.0.0)
|
244
|
+
activerecord (= 4.0.0)
|
245
|
+
activesupport (= 4.0.0)
|
246
|
+
bundler (>= 1.3.0, < 2.0)
|
247
|
+
railties (= 4.0.0)
|
248
|
+
sprockets-rails (~> 2.0.0)
|
249
|
+
rails-observers (0.1.2)
|
250
|
+
activemodel (~> 4.0)
|
251
|
+
rails-settings-cached (0.3.1)
|
252
|
+
rails (>= 4.0.0.beta1)
|
253
|
+
railties (4.0.0)
|
254
|
+
actionpack (= 4.0.0)
|
255
|
+
activesupport (= 4.0.0)
|
256
256
|
rake (>= 0.8.7)
|
257
|
-
|
258
|
-
|
259
|
-
rake (0.9.2)
|
257
|
+
thor (>= 0.18.1, < 2.0)
|
258
|
+
rake (10.1.0)
|
260
259
|
rb-fsevent (0.9.3)
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
rspec-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
rspec-
|
272
|
-
|
260
|
+
rb-inotify (0.9.1)
|
261
|
+
ffi (>= 0.5.0)
|
262
|
+
rb-kqueue (0.2.0)
|
263
|
+
ffi (>= 0.5.0)
|
264
|
+
rdiscount (2.0.7.3)
|
265
|
+
rspec (2.14.1)
|
266
|
+
rspec-core (~> 2.14.0)
|
267
|
+
rspec-expectations (~> 2.14.0)
|
268
|
+
rspec-mocks (~> 2.14.0)
|
269
|
+
rspec-core (2.14.5)
|
270
|
+
rspec-expectations (2.14.2)
|
271
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
272
|
+
rspec-mocks (2.14.3)
|
273
|
+
rspec-rails (2.14.0)
|
273
274
|
actionpack (>= 3.0)
|
274
275
|
activesupport (>= 3.0)
|
275
276
|
railties (>= 3.0)
|
276
|
-
rspec-core (~> 2.
|
277
|
-
rspec-expectations (~> 2.
|
278
|
-
rspec-mocks (~> 2.
|
277
|
+
rspec-core (~> 2.14.0)
|
278
|
+
rspec-expectations (~> 2.14.0)
|
279
|
+
rspec-mocks (~> 2.14.0)
|
279
280
|
rubyzip (0.9.9)
|
280
|
-
sass (3.2.
|
281
|
-
sass-rails (
|
282
|
-
railties (
|
281
|
+
sass (3.2.10)
|
282
|
+
sass-rails (4.0.0)
|
283
|
+
railties (>= 4.0.0.beta, < 5.0)
|
283
284
|
sass (>= 3.1.10)
|
284
|
-
|
285
|
-
selenium-webdriver (2.
|
285
|
+
sprockets-rails (~> 2.0.0)
|
286
|
+
selenium-webdriver (2.35.1)
|
286
287
|
childprocess (>= 0.2.5)
|
287
288
|
multi_json (~> 1.0)
|
288
|
-
rubyzip
|
289
|
+
rubyzip (< 1.0.0)
|
289
290
|
websocket (~> 1.0.4)
|
290
|
-
shoulda (3.
|
291
|
-
shoulda-context (~> 1.0.1)
|
292
|
-
shoulda-matchers (
|
293
|
-
shoulda-context (1.
|
294
|
-
shoulda-matchers (
|
291
|
+
shoulda (3.5.0)
|
292
|
+
shoulda-context (~> 1.0, >= 1.0.1)
|
293
|
+
shoulda-matchers (>= 1.4.1, < 3.0)
|
294
|
+
shoulda-context (1.1.5)
|
295
|
+
shoulda-matchers (2.0.0)
|
295
296
|
activesupport (>= 3.0.0)
|
296
|
-
bourne (~> 1.1.2)
|
297
297
|
simple-rss (1.2.3)
|
298
|
-
slop (3.4.
|
298
|
+
slop (3.4.6)
|
299
299
|
spork (0.9.2)
|
300
|
-
sprockets (2.
|
300
|
+
sprockets (2.10.0)
|
301
301
|
hike (~> 1.2)
|
302
302
|
multi_json (~> 1.0)
|
303
303
|
rack (~> 1.0)
|
304
304
|
tilt (~> 1.1, != 1.3.0)
|
305
|
-
|
305
|
+
sprockets-rails (2.0.0)
|
306
|
+
actionpack (>= 3.0)
|
307
|
+
activesupport (>= 3.0)
|
308
|
+
sprockets (~> 2.8)
|
309
|
+
sqlite3 (1.3.8)
|
306
310
|
terminal-table (1.4.5)
|
307
|
-
thor (0.
|
308
|
-
|
309
|
-
|
311
|
+
thor (0.18.1)
|
312
|
+
thread_safe (0.1.3)
|
313
|
+
atomic
|
314
|
+
tilt (1.4.1)
|
315
|
+
treetop (1.4.15)
|
310
316
|
polyglot
|
311
317
|
polyglot (>= 0.3.1)
|
312
318
|
trollop (2.0)
|
313
|
-
tzinfo (0.3.
|
314
|
-
uglifier (
|
319
|
+
tzinfo (0.3.37)
|
320
|
+
uglifier (2.2.1)
|
315
321
|
execjs (>= 0.3.0)
|
316
322
|
multi_json (~> 1.0, >= 1.0.2)
|
317
|
-
uuidtools (2.1.
|
318
|
-
warden (1.2.
|
323
|
+
uuidtools (2.1.4)
|
324
|
+
warden (1.2.3)
|
319
325
|
rack (>= 1.0)
|
320
326
|
websocket (1.0.7)
|
321
327
|
will_paginate (3.0.4)
|
@@ -337,20 +343,18 @@ PLATFORMS
|
|
337
343
|
ruby
|
338
344
|
|
339
345
|
DEPENDENCIES
|
340
|
-
capybara
|
341
|
-
coffee-rails
|
346
|
+
capybara (~> 2.0.0)
|
342
347
|
exception_notification
|
343
348
|
faker
|
344
|
-
forge-
|
349
|
+
forge-rad20!
|
345
350
|
growl
|
346
351
|
launchy
|
347
|
-
|
352
|
+
nokogiri (= 1.5.10)
|
353
|
+
pg
|
348
354
|
rb-fsevent
|
349
355
|
rspec-rails (>= 2.0.1)
|
350
|
-
sass-rails
|
351
356
|
shoulda
|
352
|
-
shoulda-matchers
|
357
|
+
shoulda-matchers (~> 2.0.0)
|
353
358
|
spork (~> 0.9.0.rc)
|
354
359
|
sqlite3
|
355
|
-
uglifier (>= 1.0.3)
|
356
360
|
zentest-without-autotest (= 4.4.0)
|