raygun 0.0.27 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES.md +6 -0
- data/README.md +3 -3
- data/bin/raygun +1 -1
- data/cleanup.sh +5 -5
- data/lib/raygun/version.rb +1 -1
- data/{app_prototype → rails_32}/.env +2 -0
- data/{app_prototype → rails_32}/.gitignore +0 -0
- data/{app_prototype → rails_32}/.rspec +0 -0
- data/{app_prototype → rails_32}/.ruby-version +0 -0
- data/{app_prototype → rails_32}/.rvmrc +0 -0
- data/{app_prototype → rails_32}/Gemfile +2 -2
- data/{app_prototype → rails_32}/Guardfile +0 -0
- data/rails_32/Procfile +2 -0
- data/{app_prototype → rails_32}/README.md +0 -0
- data/{app_prototype → rails_32}/Rakefile +5 -0
- data/{app_prototype → rails_32}/app/assets/javascripts/application.js +0 -0
- data/{app_prototype → rails_32}/app/assets/javascripts/users.js.coffee +0 -0
- data/{app_prototype → rails_32}/app/assets/stylesheets/_footer.less +0 -0
- data/{app_prototype → rails_32}/app/assets/stylesheets/_navbar.less +0 -0
- data/{app_prototype → rails_32}/app/assets/stylesheets/application.css.less +0 -0
- data/{app_prototype → rails_32}/app/controllers/application_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/controllers/pages_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/controllers/password_resets_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/controllers/registrations_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/controllers/user_sessions_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/controllers/users_controller.rb +0 -0
- data/{app_prototype → rails_32}/app/helpers/application_helper.rb +0 -0
- data/{app_prototype → rails_32}/app/helpers/users_helper.rb +0 -0
- data/{app_prototype → rails_32}/app/mailers/.gitkeep +0 -0
- data/{app_prototype → rails_32}/app/mailers/user_mailer.rb +0 -0
- data/{app_prototype → rails_32}/app/models/.gitkeep +0 -0
- data/{app_prototype → rails_32}/app/models/ability.rb +0 -0
- data/{app_prototype → rails_32}/app/models/user.rb +0 -0
- data/{app_prototype → rails_32}/app/models/user_session.rb +0 -0
- data/{app_prototype → rails_32}/app/views/layouts/application.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/pages/root.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/password_resets/edit.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/password_resets/new.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/registrations/new.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/activation_needed_email.html.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/activation_needed_email.text.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/activation_success_email.html.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/activation_success_email.text.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/reset_password_email.html.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_mailer/reset_password_email.text.erb +0 -0
- data/{app_prototype → rails_32}/app/views/user_sessions/new.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/users/_form.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/users/edit.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/users/index.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/users/new.html.slim +0 -0
- data/{app_prototype → rails_32}/app/views/users/show.html.slim +0 -0
- data/{app_prototype → rails_32}/config/application.rb +0 -0
- data/{app_prototype → rails_32}/config/boot.rb +0 -0
- data/{app_prototype → rails_32}/config/database.yml +0 -0
- data/{app_prototype → rails_32}/config/environment.rb +0 -0
- data/{app_prototype → rails_32}/config/environments/acceptance.rb +0 -0
- data/{app_prototype → rails_32}/config/environments/development.rb +0 -0
- data/{app_prototype → rails_32}/config/environments/production.rb +0 -0
- data/{app_prototype → rails_32}/config/environments/test.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/backtrace_silencers.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/inflections.rb +0 -0
- data/{app_prototype/config/initializers/email.rb → rails_32/config/initializers/mailcacher.rb} +5 -3
- data/{app_prototype → rails_32}/config/initializers/mime_types.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/secret_token.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/session_store.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/simple_form.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/simple_form_bootstrap.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/sorcery.rb +0 -0
- data/{app_prototype → rails_32}/config/initializers/wrap_parameters.rb +0 -0
- data/{app_prototype → rails_32}/config/locales/en.yml +0 -0
- data/{app_prototype → rails_32}/config/locales/simple_form.en.yml +0 -0
- data/rails_32/config/routes.rb +21 -0
- data/rails_32/config/unicorn.rb +27 -0
- data/{app_prototype → rails_32}/config.ru +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215324_sorcery_core.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215325_sorcery_brute_force_protection.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215326_sorcery_activity_logging.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215327_sorcery_user_activation.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215328_sorcery_remember_me.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215329_sorcery_reset_password.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215330_sorcery_external.rb +0 -0
- data/{app_prototype → rails_32}/db/migrate/20121128215337_add_admin_to_users.rb +0 -0
- data/{app_prototype → rails_32}/db/sample_data.rb +0 -0
- data/rails_32/db/schema.rb +54 -0
- data/{app_prototype → rails_32}/db/seeds.rb +0 -0
- data/{app_prototype → rails_32}/lib/assets/.gitkeep +0 -0
- data/{app_prototype → rails_32}/lib/tasks/.gitkeep +0 -0
- data/{app_prototype → rails_32}/lib/tasks/cane.rake +0 -0
- data/{app_prototype → rails_32}/lib/tasks/coverage.rake +0 -0
- data/{app_prototype → rails_32}/lib/tasks/db.rake +0 -0
- data/{app_prototype → rails_32}/lib/tasks/spec.rake +0 -0
- data/{app_prototype → rails_32}/lib/templates/rails/scaffold_controller/controller.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/rspec/scaffold/controller_spec.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/rspec/scaffold/edit_spec.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/rspec/scaffold/index_spec.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/rspec/scaffold/new_spec.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/rspec/scaffold/show_spec.rb +0 -0
- data/{app_prototype → rails_32}/lib/templates/slim/scaffold/_form.html.slim +0 -0
- data/{app_prototype → rails_32}/lib/templates/slim/scaffold/edit.html.slim +0 -0
- data/{app_prototype → rails_32}/lib/templates/slim/scaffold/index.html.slim +0 -0
- data/{app_prototype → rails_32}/lib/templates/slim/scaffold/new.html.slim +0 -0
- data/{app_prototype → rails_32}/lib/templates/slim/scaffold/show.html.slim +0 -0
- data/{app_prototype → rails_32}/log/.gitkeep +0 -0
- data/{app_prototype → rails_32}/public/404.html +0 -0
- data/{app_prototype → rails_32}/public/422.html +0 -0
- data/{app_prototype → rails_32}/public/500.html +0 -0
- data/{app_prototype → rails_32}/public/favicon.ico +0 -0
- data/{app_prototype → rails_32}/public/robots.txt +0 -0
- data/{app_prototype → rails_32}/script/rails +0 -0
- data/{app_prototype → rails_32}/spec/controllers/user_sessions_controller_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/controllers/users_controller_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/factories/users.rb +0 -0
- data/{app_prototype → rails_32}/spec/features/activation_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/features/password_reset_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/features/registration_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/features/sign_in_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/javascripts/example_spec.js.coffee +0 -0
- data/{app_prototype → rails_32}/spec/javascripts/spec.css +0 -0
- data/{app_prototype → rails_32}/spec/javascripts/spec.js.coffee +0 -0
- data/{app_prototype → rails_32}/spec/mailers/user_mailer_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/models/ability_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/models/user_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/spec_helper.rb +0 -0
- data/{app_prototype → rails_32}/spec/support/accept_values.rb +0 -0
- data/{app_prototype → rails_32}/spec/support/factory_girl.rb +0 -0
- data/{app_prototype → rails_32}/spec/support/sorcery.rb +0 -0
- data/{app_prototype → rails_32}/spec/support/user_sessions_feature_helper.rb +0 -0
- data/{app_prototype → rails_32}/spec/views/users/edit.html.slim_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/views/users/index.html.slim_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/views/users/new.html.slim_spec.rb +0 -0
- data/{app_prototype → rails_32}/spec/views/users/show.html.slim_spec.rb +0 -0
- data/{app_prototype → rails_32}/vendor/assets/javascripts/.gitkeep +0 -0
- data/{app_prototype → rails_32}/vendor/assets/stylesheets/.gitkeep +0 -0
- data/{app_prototype → rails_32}/vendor/plugins/.gitkeep +0 -0
- metadata +131 -128
- data/app_prototype/Procfile +0 -2
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.0.28 [2013-03-26]
|
|
4
|
+
|
|
5
|
+
* Use unicorn by default instead of thin, as per heroku's recommendation.
|
|
6
|
+
* Suppress schema dumping unless run in development mode to eliminate pg_dump errors on heroku during db:migrate.
|
|
7
|
+
* Tweak mailcacher configuration so that it only sets smtp_settings when mailchacher is running.
|
|
8
|
+
|
|
3
9
|
## 0.0.27 [2013-02-27]
|
|
4
10
|
|
|
5
11
|
* Make sure the target directory is empty, otherwise misfire.
|
data/README.md
CHANGED
|
@@ -75,11 +75,11 @@ covered (see above).
|
|
|
75
75
|
|
|
76
76
|
## Internal Mechanics
|
|
77
77
|
|
|
78
|
-
Raygun simply copies the [
|
|
79
|
-
the copied project. So, what you get looks a lot like [
|
|
78
|
+
Raygun simply copies the [rails_32](rails_32) tree and then runs a small set of commands to customize
|
|
79
|
+
the copied project. So, what you get looks a lot like [rails_32](rails_32). Check out
|
|
80
80
|
[raygun](bin/raygun) to see how it's massaged after being copied.
|
|
81
81
|
|
|
82
|
-
This approach is fast, simple, and makes raygun developement very easy. Make changes to [
|
|
82
|
+
This approach is fast, simple, and makes raygun developement very easy. Make changes to [rails_32](rails_32),
|
|
83
83
|
run its specs and fire up the server to see what happens.
|
|
84
84
|
|
|
85
85
|
## Contributing
|
data/bin/raygun
CHANGED
|
@@ -27,7 +27,7 @@ module Raygun
|
|
|
27
27
|
def copy_prototype
|
|
28
28
|
FileUtils.mkdir_p(app_dir)
|
|
29
29
|
|
|
30
|
-
Dir.glob(File.expand_path(
|
|
30
|
+
Dir.glob(File.expand_path("../../rails_32/*", __FILE__), File::FNM_DOTMATCH) do |f|
|
|
31
31
|
next if %w{. ..}.include?(File.basename(f))
|
|
32
32
|
FileUtils.cp_r(f, app_dir)
|
|
33
33
|
end
|
data/cleanup.sh
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
# All git ignored files: git ls-files --others -i --exclude-standard
|
|
4
4
|
|
|
5
5
|
git clean -df
|
|
6
|
-
git checkout
|
|
6
|
+
git checkout rails_32/config/routes.rb app_prototype/db/schema.rb
|
|
7
7
|
|
|
8
8
|
find . -name ".DS_Store" -exec rm -f {} \;
|
|
9
9
|
|
|
10
|
-
rm -rfv
|
|
11
|
-
rm -rfv
|
|
12
|
-
rm -rfv
|
|
13
|
-
rm -rfv
|
|
10
|
+
rm -rfv rails_32/.DS_Store
|
|
11
|
+
rm -rfv rails_32/log/*
|
|
12
|
+
rm -rfv rails_32/tmp/*
|
|
13
|
+
rm -rfv rails_32/coverage
|
data/lib/raygun/version.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/rails_32/Procfile
ADDED
|
File without changes
|
|
@@ -6,5 +6,10 @@ require File.expand_path('../config/application', __FILE__)
|
|
|
6
6
|
|
|
7
7
|
AppPrototype::Application.load_tasks
|
|
8
8
|
|
|
9
|
+
# Disable schema.sql generation, unless we're in development.
|
|
10
|
+
# http://stackoverflow.com/questions/12413306/error-when-doing-rake-dbmigrate-on-heroku
|
|
11
|
+
Rake::Task['db:structure:dump'].clear unless Rails.env.development?
|
|
12
|
+
|
|
13
|
+
# Spec is the default rake target.
|
|
9
14
|
task(:default).clear
|
|
10
15
|
task default: 'spec'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/{app_prototype/config/initializers/email.rb → rails_32/config/initializers/mailcacher.rb}
RENAMED
|
@@ -5,9 +5,11 @@ mailcatcher_port = 1025
|
|
|
5
5
|
begin
|
|
6
6
|
sock = TCPSocket.new('localhost', mailcatcher_port)
|
|
7
7
|
sock.close
|
|
8
|
-
|
|
8
|
+
mailcatcher = true
|
|
9
9
|
rescue
|
|
10
|
-
|
|
10
|
+
mailcatcher = false
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
if Rails.env.development? && mailcatcher
|
|
14
|
+
ActionMailer::Base.smtp_settings = { host: 'localhost', port: mailcatcher_port }
|
|
15
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
AppPrototype::Application.routes.draw do
|
|
2
|
+
|
|
3
|
+
root to: 'pages#root'
|
|
4
|
+
|
|
5
|
+
match 'sign_in' => 'user_sessions#new', as: :sign_in
|
|
6
|
+
match 'sign_out' => 'user_sessions#destroy', as: :sign_out
|
|
7
|
+
|
|
8
|
+
resources :user_sessions, only: [:new, :create, :destroy]
|
|
9
|
+
|
|
10
|
+
match 'sign_up' => 'registrations#new', via: :get, as: :sign_up
|
|
11
|
+
match 'sign_up' => 'registrations#create', via: :post, as: :sign_up
|
|
12
|
+
match 'activate/:token' => 'registrations#activate', via: :get, as: :activation
|
|
13
|
+
|
|
14
|
+
match 'forgotten_password' => 'password_resets#new', via: :get, as: :forgotten_password
|
|
15
|
+
match 'forgotten_password' => 'password_resets#create', via: :post, as: :forgotten_password
|
|
16
|
+
match 'reset_password/:token' => 'password_resets#edit', via: :get, as: :reset_password
|
|
17
|
+
match 'reset_password/:id' => 'password_resets#update', via: :put
|
|
18
|
+
|
|
19
|
+
resources :users
|
|
20
|
+
|
|
21
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# http://unicorn.bogomips.org/
|
|
2
|
+
# https://blog.heroku.com/archives/2013/2/27/unicorn_rails
|
|
3
|
+
# http://devblog.thinkthroughmath.com/blog/2013/02/27/managing-request-queuing-with-rails-on-heroku/
|
|
4
|
+
|
|
5
|
+
listen ENV['PORT'], backlog: Integer(ENV['UNICORN_BACKLOG'] || 16)
|
|
6
|
+
worker_processes Integer(ENV['UNICORN_WORKERS'] || 3)
|
|
7
|
+
timeout 30
|
|
8
|
+
preload_app true
|
|
9
|
+
|
|
10
|
+
before_fork do |server, worker|
|
|
11
|
+
Signal.trap 'TERM' do
|
|
12
|
+
puts 'Unicorn master intercepting TERM and sending myself QUIT instead.'
|
|
13
|
+
Process.kill 'QUIT', Process.pid
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
defined?(ActiveRecord::Base) and
|
|
17
|
+
ActiveRecord::Base.connection.disconnect!
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
after_fork do |server, worker|
|
|
21
|
+
Signal.trap 'TERM' do
|
|
22
|
+
puts 'Unicorn worker intercepting TERM and doing nothing. Wait for master to send QUIT.'
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
defined?(ActiveRecord::Base) and
|
|
26
|
+
ActiveRecord::Base.establish_connection
|
|
27
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
+
#
|
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
+
# database schema. If you need to create the application database on another
|
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
+
#
|
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
|
13
|
+
|
|
14
|
+
ActiveRecord::Schema.define(:version => 20121128215337) do
|
|
15
|
+
|
|
16
|
+
create_table "authentications", :force => true do |t|
|
|
17
|
+
t.integer "user_id", :null => false
|
|
18
|
+
t.string "provider", :null => false
|
|
19
|
+
t.string "uid", :null => false
|
|
20
|
+
t.datetime "created_at", :null => false
|
|
21
|
+
t.datetime "updated_at", :null => false
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
create_table "users", :force => true do |t|
|
|
25
|
+
t.string "name"
|
|
26
|
+
t.string "email"
|
|
27
|
+
t.string "crypted_password"
|
|
28
|
+
t.string "salt"
|
|
29
|
+
t.datetime "created_at", :null => false
|
|
30
|
+
t.datetime "updated_at", :null => false
|
|
31
|
+
t.integer "failed_logins_count", :default => 0
|
|
32
|
+
t.datetime "lock_expires_at"
|
|
33
|
+
t.string "unlock_token"
|
|
34
|
+
t.datetime "last_login_at"
|
|
35
|
+
t.datetime "last_logout_at"
|
|
36
|
+
t.datetime "last_activity_at"
|
|
37
|
+
t.string "activation_state"
|
|
38
|
+
t.string "activation_token"
|
|
39
|
+
t.datetime "activation_token_expires_at"
|
|
40
|
+
t.string "remember_me_token"
|
|
41
|
+
t.datetime "remember_me_token_expires_at"
|
|
42
|
+
t.string "reset_password_token"
|
|
43
|
+
t.datetime "reset_password_token_expires_at"
|
|
44
|
+
t.datetime "reset_password_email_sent_at"
|
|
45
|
+
t.boolean "admin"
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
add_index "users", ["activation_token"], :name => "index_users_on_activation_token"
|
|
49
|
+
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
|
|
50
|
+
add_index "users", ["last_logout_at", "last_activity_at"], :name => "index_users_on_last_logout_at_and_last_activity_at"
|
|
51
|
+
add_index "users", ["remember_me_token"], :name => "index_users_on_remember_me_token"
|
|
52
|
+
add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token"
|
|
53
|
+
|
|
54
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raygun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.28
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-
|
|
14
|
+
date: 2013-03-26 00:00:00.000000000 Z
|
|
15
15
|
dependencies: []
|
|
16
16
|
description: Carbon Five Rails application generator
|
|
17
17
|
email:
|
|
@@ -30,138 +30,141 @@ files:
|
|
|
30
30
|
- README.md
|
|
31
31
|
- Rakefile
|
|
32
32
|
- TODO.md
|
|
33
|
-
- app_prototype/.env
|
|
34
|
-
- app_prototype/.gitignore
|
|
35
|
-
- app_prototype/.rspec
|
|
36
|
-
- app_prototype/.ruby-version
|
|
37
|
-
- app_prototype/.rvmrc
|
|
38
|
-
- app_prototype/Gemfile
|
|
39
|
-
- app_prototype/Guardfile
|
|
40
|
-
- app_prototype/Procfile
|
|
41
|
-
- app_prototype/README.md
|
|
42
|
-
- app_prototype/Rakefile
|
|
43
|
-
- app_prototype/app/assets/javascripts/application.js
|
|
44
|
-
- app_prototype/app/assets/javascripts/users.js.coffee
|
|
45
|
-
- app_prototype/app/assets/stylesheets/_footer.less
|
|
46
|
-
- app_prototype/app/assets/stylesheets/_navbar.less
|
|
47
|
-
- app_prototype/app/assets/stylesheets/application.css.less
|
|
48
|
-
- app_prototype/app/controllers/application_controller.rb
|
|
49
|
-
- app_prototype/app/controllers/pages_controller.rb
|
|
50
|
-
- app_prototype/app/controllers/password_resets_controller.rb
|
|
51
|
-
- app_prototype/app/controllers/registrations_controller.rb
|
|
52
|
-
- app_prototype/app/controllers/user_sessions_controller.rb
|
|
53
|
-
- app_prototype/app/controllers/users_controller.rb
|
|
54
|
-
- app_prototype/app/helpers/application_helper.rb
|
|
55
|
-
- app_prototype/app/helpers/users_helper.rb
|
|
56
|
-
- app_prototype/app/mailers/.gitkeep
|
|
57
|
-
- app_prototype/app/mailers/user_mailer.rb
|
|
58
|
-
- app_prototype/app/models/.gitkeep
|
|
59
|
-
- app_prototype/app/models/ability.rb
|
|
60
|
-
- app_prototype/app/models/user.rb
|
|
61
|
-
- app_prototype/app/models/user_session.rb
|
|
62
|
-
- app_prototype/app/views/layouts/application.html.slim
|
|
63
|
-
- app_prototype/app/views/pages/root.html.slim
|
|
64
|
-
- app_prototype/app/views/password_resets/edit.html.slim
|
|
65
|
-
- app_prototype/app/views/password_resets/new.html.slim
|
|
66
|
-
- app_prototype/app/views/registrations/new.html.slim
|
|
67
|
-
- app_prototype/app/views/user_mailer/activation_needed_email.html.erb
|
|
68
|
-
- app_prototype/app/views/user_mailer/activation_needed_email.text.erb
|
|
69
|
-
- app_prototype/app/views/user_mailer/activation_success_email.html.erb
|
|
70
|
-
- app_prototype/app/views/user_mailer/activation_success_email.text.erb
|
|
71
|
-
- app_prototype/app/views/user_mailer/reset_password_email.html.erb
|
|
72
|
-
- app_prototype/app/views/user_mailer/reset_password_email.text.erb
|
|
73
|
-
- app_prototype/app/views/user_sessions/new.html.slim
|
|
74
|
-
- app_prototype/app/views/users/_form.html.slim
|
|
75
|
-
- app_prototype/app/views/users/edit.html.slim
|
|
76
|
-
- app_prototype/app/views/users/index.html.slim
|
|
77
|
-
- app_prototype/app/views/users/new.html.slim
|
|
78
|
-
- app_prototype/app/views/users/show.html.slim
|
|
79
|
-
- app_prototype/config.ru
|
|
80
|
-
- app_prototype/config/application.rb
|
|
81
|
-
- app_prototype/config/boot.rb
|
|
82
|
-
- app_prototype/config/database.yml
|
|
83
|
-
- app_prototype/config/environment.rb
|
|
84
|
-
- app_prototype/config/environments/acceptance.rb
|
|
85
|
-
- app_prototype/config/environments/development.rb
|
|
86
|
-
- app_prototype/config/environments/production.rb
|
|
87
|
-
- app_prototype/config/environments/test.rb
|
|
88
|
-
- app_prototype/config/initializers/backtrace_silencers.rb
|
|
89
|
-
- app_prototype/config/initializers/email.rb
|
|
90
|
-
- app_prototype/config/initializers/inflections.rb
|
|
91
|
-
- app_prototype/config/initializers/mime_types.rb
|
|
92
|
-
- app_prototype/config/initializers/secret_token.rb
|
|
93
|
-
- app_prototype/config/initializers/session_store.rb
|
|
94
|
-
- app_prototype/config/initializers/simple_form.rb
|
|
95
|
-
- app_prototype/config/initializers/simple_form_bootstrap.rb
|
|
96
|
-
- app_prototype/config/initializers/sorcery.rb
|
|
97
|
-
- app_prototype/config/initializers/wrap_parameters.rb
|
|
98
|
-
- app_prototype/config/locales/en.yml
|
|
99
|
-
- app_prototype/config/locales/simple_form.en.yml
|
|
100
33
|
- app_prototype/config/routes.rb
|
|
101
|
-
- app_prototype/db/migrate/20121128215324_sorcery_core.rb
|
|
102
|
-
- app_prototype/db/migrate/20121128215325_sorcery_brute_force_protection.rb
|
|
103
|
-
- app_prototype/db/migrate/20121128215326_sorcery_activity_logging.rb
|
|
104
|
-
- app_prototype/db/migrate/20121128215327_sorcery_user_activation.rb
|
|
105
|
-
- app_prototype/db/migrate/20121128215328_sorcery_remember_me.rb
|
|
106
|
-
- app_prototype/db/migrate/20121128215329_sorcery_reset_password.rb
|
|
107
|
-
- app_prototype/db/migrate/20121128215330_sorcery_external.rb
|
|
108
|
-
- app_prototype/db/migrate/20121128215337_add_admin_to_users.rb
|
|
109
|
-
- app_prototype/db/sample_data.rb
|
|
110
34
|
- app_prototype/db/schema.rb
|
|
111
|
-
- app_prototype/db/seeds.rb
|
|
112
|
-
- app_prototype/lib/assets/.gitkeep
|
|
113
|
-
- app_prototype/lib/tasks/.gitkeep
|
|
114
|
-
- app_prototype/lib/tasks/cane.rake
|
|
115
|
-
- app_prototype/lib/tasks/coverage.rake
|
|
116
|
-
- app_prototype/lib/tasks/db.rake
|
|
117
|
-
- app_prototype/lib/tasks/spec.rake
|
|
118
|
-
- app_prototype/lib/templates/rails/scaffold_controller/controller.rb
|
|
119
|
-
- app_prototype/lib/templates/rspec/scaffold/controller_spec.rb
|
|
120
|
-
- app_prototype/lib/templates/rspec/scaffold/edit_spec.rb
|
|
121
|
-
- app_prototype/lib/templates/rspec/scaffold/index_spec.rb
|
|
122
|
-
- app_prototype/lib/templates/rspec/scaffold/new_spec.rb
|
|
123
|
-
- app_prototype/lib/templates/rspec/scaffold/show_spec.rb
|
|
124
|
-
- app_prototype/lib/templates/slim/scaffold/_form.html.slim
|
|
125
|
-
- app_prototype/lib/templates/slim/scaffold/edit.html.slim
|
|
126
|
-
- app_prototype/lib/templates/slim/scaffold/index.html.slim
|
|
127
|
-
- app_prototype/lib/templates/slim/scaffold/new.html.slim
|
|
128
|
-
- app_prototype/lib/templates/slim/scaffold/show.html.slim
|
|
129
|
-
- app_prototype/log/.gitkeep
|
|
130
|
-
- app_prototype/public/404.html
|
|
131
|
-
- app_prototype/public/422.html
|
|
132
|
-
- app_prototype/public/500.html
|
|
133
|
-
- app_prototype/public/favicon.ico
|
|
134
|
-
- app_prototype/public/robots.txt
|
|
135
|
-
- app_prototype/script/rails
|
|
136
|
-
- app_prototype/spec/controllers/user_sessions_controller_spec.rb
|
|
137
|
-
- app_prototype/spec/controllers/users_controller_spec.rb
|
|
138
|
-
- app_prototype/spec/factories/users.rb
|
|
139
|
-
- app_prototype/spec/features/activation_spec.rb
|
|
140
|
-
- app_prototype/spec/features/password_reset_spec.rb
|
|
141
|
-
- app_prototype/spec/features/registration_spec.rb
|
|
142
|
-
- app_prototype/spec/features/sign_in_spec.rb
|
|
143
|
-
- app_prototype/spec/javascripts/example_spec.js.coffee
|
|
144
|
-
- app_prototype/spec/javascripts/spec.css
|
|
145
|
-
- app_prototype/spec/javascripts/spec.js.coffee
|
|
146
|
-
- app_prototype/spec/mailers/user_mailer_spec.rb
|
|
147
|
-
- app_prototype/spec/models/ability_spec.rb
|
|
148
|
-
- app_prototype/spec/models/user_spec.rb
|
|
149
|
-
- app_prototype/spec/spec_helper.rb
|
|
150
|
-
- app_prototype/spec/support/accept_values.rb
|
|
151
|
-
- app_prototype/spec/support/factory_girl.rb
|
|
152
|
-
- app_prototype/spec/support/sorcery.rb
|
|
153
|
-
- app_prototype/spec/support/user_sessions_feature_helper.rb
|
|
154
|
-
- app_prototype/spec/views/users/edit.html.slim_spec.rb
|
|
155
|
-
- app_prototype/spec/views/users/index.html.slim_spec.rb
|
|
156
|
-
- app_prototype/spec/views/users/new.html.slim_spec.rb
|
|
157
|
-
- app_prototype/spec/views/users/show.html.slim_spec.rb
|
|
158
|
-
- app_prototype/vendor/assets/javascripts/.gitkeep
|
|
159
|
-
- app_prototype/vendor/assets/stylesheets/.gitkeep
|
|
160
|
-
- app_prototype/vendor/plugins/.gitkeep
|
|
161
35
|
- bin/raygun
|
|
162
36
|
- cleanup.sh
|
|
163
37
|
- lib/raygun/version.rb
|
|
164
38
|
- marvin.jpg
|
|
39
|
+
- rails_32/.env
|
|
40
|
+
- rails_32/.gitignore
|
|
41
|
+
- rails_32/.rspec
|
|
42
|
+
- rails_32/.ruby-version
|
|
43
|
+
- rails_32/.rvmrc
|
|
44
|
+
- rails_32/Gemfile
|
|
45
|
+
- rails_32/Guardfile
|
|
46
|
+
- rails_32/Procfile
|
|
47
|
+
- rails_32/README.md
|
|
48
|
+
- rails_32/Rakefile
|
|
49
|
+
- rails_32/app/assets/javascripts/application.js
|
|
50
|
+
- rails_32/app/assets/javascripts/users.js.coffee
|
|
51
|
+
- rails_32/app/assets/stylesheets/_footer.less
|
|
52
|
+
- rails_32/app/assets/stylesheets/_navbar.less
|
|
53
|
+
- rails_32/app/assets/stylesheets/application.css.less
|
|
54
|
+
- rails_32/app/controllers/application_controller.rb
|
|
55
|
+
- rails_32/app/controllers/pages_controller.rb
|
|
56
|
+
- rails_32/app/controllers/password_resets_controller.rb
|
|
57
|
+
- rails_32/app/controllers/registrations_controller.rb
|
|
58
|
+
- rails_32/app/controllers/user_sessions_controller.rb
|
|
59
|
+
- rails_32/app/controllers/users_controller.rb
|
|
60
|
+
- rails_32/app/helpers/application_helper.rb
|
|
61
|
+
- rails_32/app/helpers/users_helper.rb
|
|
62
|
+
- rails_32/app/mailers/.gitkeep
|
|
63
|
+
- rails_32/app/mailers/user_mailer.rb
|
|
64
|
+
- rails_32/app/models/.gitkeep
|
|
65
|
+
- rails_32/app/models/ability.rb
|
|
66
|
+
- rails_32/app/models/user.rb
|
|
67
|
+
- rails_32/app/models/user_session.rb
|
|
68
|
+
- rails_32/app/views/layouts/application.html.slim
|
|
69
|
+
- rails_32/app/views/pages/root.html.slim
|
|
70
|
+
- rails_32/app/views/password_resets/edit.html.slim
|
|
71
|
+
- rails_32/app/views/password_resets/new.html.slim
|
|
72
|
+
- rails_32/app/views/registrations/new.html.slim
|
|
73
|
+
- rails_32/app/views/user_mailer/activation_needed_email.html.erb
|
|
74
|
+
- rails_32/app/views/user_mailer/activation_needed_email.text.erb
|
|
75
|
+
- rails_32/app/views/user_mailer/activation_success_email.html.erb
|
|
76
|
+
- rails_32/app/views/user_mailer/activation_success_email.text.erb
|
|
77
|
+
- rails_32/app/views/user_mailer/reset_password_email.html.erb
|
|
78
|
+
- rails_32/app/views/user_mailer/reset_password_email.text.erb
|
|
79
|
+
- rails_32/app/views/user_sessions/new.html.slim
|
|
80
|
+
- rails_32/app/views/users/_form.html.slim
|
|
81
|
+
- rails_32/app/views/users/edit.html.slim
|
|
82
|
+
- rails_32/app/views/users/index.html.slim
|
|
83
|
+
- rails_32/app/views/users/new.html.slim
|
|
84
|
+
- rails_32/app/views/users/show.html.slim
|
|
85
|
+
- rails_32/config.ru
|
|
86
|
+
- rails_32/config/application.rb
|
|
87
|
+
- rails_32/config/boot.rb
|
|
88
|
+
- rails_32/config/database.yml
|
|
89
|
+
- rails_32/config/environment.rb
|
|
90
|
+
- rails_32/config/environments/acceptance.rb
|
|
91
|
+
- rails_32/config/environments/development.rb
|
|
92
|
+
- rails_32/config/environments/production.rb
|
|
93
|
+
- rails_32/config/environments/test.rb
|
|
94
|
+
- rails_32/config/initializers/backtrace_silencers.rb
|
|
95
|
+
- rails_32/config/initializers/inflections.rb
|
|
96
|
+
- rails_32/config/initializers/mailcacher.rb
|
|
97
|
+
- rails_32/config/initializers/mime_types.rb
|
|
98
|
+
- rails_32/config/initializers/secret_token.rb
|
|
99
|
+
- rails_32/config/initializers/session_store.rb
|
|
100
|
+
- rails_32/config/initializers/simple_form.rb
|
|
101
|
+
- rails_32/config/initializers/simple_form_bootstrap.rb
|
|
102
|
+
- rails_32/config/initializers/sorcery.rb
|
|
103
|
+
- rails_32/config/initializers/wrap_parameters.rb
|
|
104
|
+
- rails_32/config/locales/en.yml
|
|
105
|
+
- rails_32/config/locales/simple_form.en.yml
|
|
106
|
+
- rails_32/config/routes.rb
|
|
107
|
+
- rails_32/config/unicorn.rb
|
|
108
|
+
- rails_32/db/migrate/20121128215324_sorcery_core.rb
|
|
109
|
+
- rails_32/db/migrate/20121128215325_sorcery_brute_force_protection.rb
|
|
110
|
+
- rails_32/db/migrate/20121128215326_sorcery_activity_logging.rb
|
|
111
|
+
- rails_32/db/migrate/20121128215327_sorcery_user_activation.rb
|
|
112
|
+
- rails_32/db/migrate/20121128215328_sorcery_remember_me.rb
|
|
113
|
+
- rails_32/db/migrate/20121128215329_sorcery_reset_password.rb
|
|
114
|
+
- rails_32/db/migrate/20121128215330_sorcery_external.rb
|
|
115
|
+
- rails_32/db/migrate/20121128215337_add_admin_to_users.rb
|
|
116
|
+
- rails_32/db/sample_data.rb
|
|
117
|
+
- rails_32/db/schema.rb
|
|
118
|
+
- rails_32/db/seeds.rb
|
|
119
|
+
- rails_32/lib/assets/.gitkeep
|
|
120
|
+
- rails_32/lib/tasks/.gitkeep
|
|
121
|
+
- rails_32/lib/tasks/cane.rake
|
|
122
|
+
- rails_32/lib/tasks/coverage.rake
|
|
123
|
+
- rails_32/lib/tasks/db.rake
|
|
124
|
+
- rails_32/lib/tasks/spec.rake
|
|
125
|
+
- rails_32/lib/templates/rails/scaffold_controller/controller.rb
|
|
126
|
+
- rails_32/lib/templates/rspec/scaffold/controller_spec.rb
|
|
127
|
+
- rails_32/lib/templates/rspec/scaffold/edit_spec.rb
|
|
128
|
+
- rails_32/lib/templates/rspec/scaffold/index_spec.rb
|
|
129
|
+
- rails_32/lib/templates/rspec/scaffold/new_spec.rb
|
|
130
|
+
- rails_32/lib/templates/rspec/scaffold/show_spec.rb
|
|
131
|
+
- rails_32/lib/templates/slim/scaffold/_form.html.slim
|
|
132
|
+
- rails_32/lib/templates/slim/scaffold/edit.html.slim
|
|
133
|
+
- rails_32/lib/templates/slim/scaffold/index.html.slim
|
|
134
|
+
- rails_32/lib/templates/slim/scaffold/new.html.slim
|
|
135
|
+
- rails_32/lib/templates/slim/scaffold/show.html.slim
|
|
136
|
+
- rails_32/log/.gitkeep
|
|
137
|
+
- rails_32/public/404.html
|
|
138
|
+
- rails_32/public/422.html
|
|
139
|
+
- rails_32/public/500.html
|
|
140
|
+
- rails_32/public/favicon.ico
|
|
141
|
+
- rails_32/public/robots.txt
|
|
142
|
+
- rails_32/script/rails
|
|
143
|
+
- rails_32/spec/controllers/user_sessions_controller_spec.rb
|
|
144
|
+
- rails_32/spec/controllers/users_controller_spec.rb
|
|
145
|
+
- rails_32/spec/factories/users.rb
|
|
146
|
+
- rails_32/spec/features/activation_spec.rb
|
|
147
|
+
- rails_32/spec/features/password_reset_spec.rb
|
|
148
|
+
- rails_32/spec/features/registration_spec.rb
|
|
149
|
+
- rails_32/spec/features/sign_in_spec.rb
|
|
150
|
+
- rails_32/spec/javascripts/example_spec.js.coffee
|
|
151
|
+
- rails_32/spec/javascripts/spec.css
|
|
152
|
+
- rails_32/spec/javascripts/spec.js.coffee
|
|
153
|
+
- rails_32/spec/mailers/user_mailer_spec.rb
|
|
154
|
+
- rails_32/spec/models/ability_spec.rb
|
|
155
|
+
- rails_32/spec/models/user_spec.rb
|
|
156
|
+
- rails_32/spec/spec_helper.rb
|
|
157
|
+
- rails_32/spec/support/accept_values.rb
|
|
158
|
+
- rails_32/spec/support/factory_girl.rb
|
|
159
|
+
- rails_32/spec/support/sorcery.rb
|
|
160
|
+
- rails_32/spec/support/user_sessions_feature_helper.rb
|
|
161
|
+
- rails_32/spec/views/users/edit.html.slim_spec.rb
|
|
162
|
+
- rails_32/spec/views/users/index.html.slim_spec.rb
|
|
163
|
+
- rails_32/spec/views/users/new.html.slim_spec.rb
|
|
164
|
+
- rails_32/spec/views/users/show.html.slim_spec.rb
|
|
165
|
+
- rails_32/vendor/assets/javascripts/.gitkeep
|
|
166
|
+
- rails_32/vendor/assets/stylesheets/.gitkeep
|
|
167
|
+
- rails_32/vendor/plugins/.gitkeep
|
|
165
168
|
- raygun.gemspec
|
|
166
169
|
homepage: https://github.com/carbonfive/raygun
|
|
167
170
|
licenses: []
|
data/app_prototype/Procfile
DELETED