raygun 0.0.28 → 0.0.29
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -1
- data/CHANGES.md +7 -0
- data/README.md +3 -1
- data/bin/raygun +67 -44
- data/cleanup.sh +5 -0
- data/lib/colorize.rb +194 -0
- data/lib/raygun/version.rb +1 -1
- data/rails_32/.ruby-gemset +1 -0
- data/rails_32/Gemfile +1 -0
- data/rails_32/spec/spec_helper.rb +1 -17
- data/rails_32/spec/support/database_cleaner.rb +24 -0
- data/rails_40/.env +8 -0
- data/rails_40/.gitignore +16 -0
- data/rails_40/.rspec +1 -0
- data/rails_40/.ruby-gemset +1 -0
- data/rails_40/.ruby-version +1 -0
- data/rails_40/Gemfile +53 -0
- data/rails_40/Guardfile +32 -0
- data/rails_40/Procfile +2 -0
- data/rails_40/README.md +66 -0
- data/rails_40/Rakefile +15 -0
- data/rails_40/app/assets/javascripts/application.js +17 -0
- data/rails_40/app/assets/stylesheets/_footer.less +30 -0
- data/rails_40/app/assets/stylesheets/_navbar.less +5 -0
- data/rails_40/app/assets/stylesheets/application.css.less +3 -0
- data/rails_40/app/controllers/application_controller.rb +5 -0
- data/rails_40/app/controllers/concerns/.keep +0 -0
- data/rails_40/app/controllers/pages_controller.rb +6 -0
- data/rails_40/app/helpers/application_helper.rb +11 -0
- data/rails_40/app/mailers/.keep +0 -0
- data/rails_40/app/models/.keep +0 -0
- data/rails_40/app/models/concerns/.keep +0 -0
- data/rails_40/app/views/layouts/application.html.slim +36 -0
- data/rails_40/app/views/pages/root.html.slim +12 -0
- data/rails_40/bin/bundle +3 -0
- data/rails_40/bin/rails +4 -0
- data/rails_40/bin/rake +4 -0
- data/rails_40/config/application.rb +36 -0
- data/rails_40/config/boot.rb +4 -0
- data/rails_40/config/database.yml +15 -0
- data/rails_40/config/environment.rb +5 -0
- data/rails_40/config/environments/acceptance.rb +82 -0
- data/rails_40/config/environments/development.rb +31 -0
- data/rails_40/config/environments/production.rb +82 -0
- data/rails_40/config/environments/test.rb +38 -0
- data/rails_40/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_40/config/initializers/filter_parameter_logging.rb +4 -0
- data/rails_40/config/initializers/inflections.rb +16 -0
- data/rails_40/config/initializers/mailcacher.rb +15 -0
- data/rails_40/config/initializers/mime_types.rb +5 -0
- data/rails_40/config/initializers/secret_token.rb +12 -0
- data/rails_40/config/initializers/session_store.rb +3 -0
- data/rails_40/config/initializers/simple_form.rb +142 -0
- data/rails_40/config/initializers/simple_form_bootstrap.rb +45 -0
- data/rails_40/config/initializers/wrap_parameters.rb +14 -0
- data/rails_40/config/locales/en.yml +23 -0
- data/rails_40/config/locales/simple_form.en.yml +26 -0
- data/rails_40/config/routes.rb +5 -0
- data/rails_40/config/unicorn.rb +27 -0
- data/rails_40/config.ru +18 -0
- data/rails_40/db/sample_data.rb +11 -0
- data/rails_40/db/schema.rb +19 -0
- data/rails_40/db/seeds.rb +7 -0
- data/rails_40/lib/assets/.keep +0 -0
- data/rails_40/lib/tasks/.keep +0 -0
- data/rails_40/lib/tasks/coverage.rake +10 -0
- data/rails_40/lib/tasks/db.rake +7 -0
- data/rails_40/lib/tasks/spec.rake +23 -0
- data/rails_40/lib/templates/rails/scaffold_controller/controller.rb +61 -0
- data/rails_40/lib/templates/rspec/controller/controller_spec.rb +16 -0
- data/rails_40/lib/templates/rspec/scaffold/controller_spec.rb +155 -0
- data/rails_40/lib/templates/rspec/scaffold/edit_spec.rb +18 -0
- data/rails_40/lib/templates/rspec/scaffold/index_spec.rb +26 -0
- data/rails_40/lib/templates/rspec/scaffold/new_spec.rb +19 -0
- data/rails_40/lib/templates/rspec/scaffold/show_spec.rb +16 -0
- data/rails_40/lib/templates/slim/scaffold/_form.html.slim +13 -0
- data/rails_40/lib/templates/slim/scaffold/edit.html.slim +5 -0
- data/rails_40/lib/templates/slim/scaffold/index.html.slim +29 -0
- data/rails_40/lib/templates/slim/scaffold/new.html.slim +4 -0
- data/rails_40/lib/templates/slim/scaffold/show.html.slim +17 -0
- data/rails_40/log/.keep +0 -0
- data/rails_40/public/404.html +58 -0
- data/rails_40/public/422.html +58 -0
- data/rails_40/public/500.html +57 -0
- data/rails_40/public/favicon.ico +0 -0
- data/rails_40/public/robots.txt +5 -0
- data/rails_40/spec/controllers/pages_controller_spec.rb +12 -0
- data/rails_40/spec/features/pages_spec.rb +18 -0
- data/rails_40/spec/spec_helper.rb +79 -0
- data/rails_40/spec/support/database_cleaner.rb +24 -0
- data/rails_40/spec/support/factory_girl.rb +3 -0
- data/rails_40/vendor/assets/javascripts/.keep +0 -0
- data/rails_40/vendor/assets/stylesheets/.keep +0 -0
- metadata +88 -6
- data/.rvmrc +0 -1
- data/app_prototype/config/routes.rb +0 -21
- data/app_prototype/db/schema.rb +0 -54
- data/rails_32/.rvmrc +0 -1
data/app_prototype/db/schema.rb
DELETED
@@ -1,54 +0,0 @@
|
|
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
|
data/rails_32/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use ruby-1.9.3-p392@app-prototype --create
|