This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[email protected] [~/rails/masquerade]# ruby script/console | |
Loading development environment (Rails 2.1.0) | |
>> class Twitter | |
>> include HTTParty | |
>> base_uri 'twitter.com' | |
>> | |
?> | |
?> def initialize(u, p) | |
>> @auth = {:username => u, :password => p} | |
>> end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in /home/useraxis/rails/pimpi) | |
** Invoke tog:plugins:test (first_time) | |
** Execute tog:plugins:test | |
(in /home/useraxis/rails/pimpi/vendor/plugins/tog_core) | |
Adding [:mail_user_observer, :user_observer] to [] | |
Loaded suite /usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader | |
Started | |
...........F.. | |
Finished in 0.316141 seconds. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# rake tog:plugins:test | |
(in /home/useraxis/rails/pimpi) | |
cd /home/useraxis/rails/pimpi/vendor/plugins/tog_core | |
(in /home/useraxis/rails/pimpi/vendor/plugins/tog_core) | |
/usr/bin/ruby -Ilib:lib "/usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/unit/config_test.rb" "test/unit/observer_test.rb" "test/unit/search_test.rb" "test/unit/plugins_test.rb" | |
Adding [:mail_user_observer, :user_observer] to [] | |
./test/unit/plugins_test.rb:9: warning: parenthesize argument(s) for future version | |
Loaded suite /usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader | |
Started | |
.............. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# tail -f log/development.log | |
SQL (0.000142) SET NAMES 'utf8' | |
SQL (0.000056) SET SQL_AUTO_IS_NULL=0 | |
SQL (0.000364) SHOW TABLES | |
Tog::Config Columns (0.002972) SHOW FIELDS FROM `config` | |
Tog::Config Load (0.000086) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.site.name') LIMIT 1 | |
SQL (0.000285) SHOW TABLES | |
Tog::Config Load (0.000050) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.language.default') LIMIT 1 | |
SQL (0.000215) SHOW TABLES | |
Tog::Config Load (0.000046) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.mail.default_subject') LIMIT 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# tail -f log/development.log | |
SQL (0.000142) SET NAMES 'utf8' | |
SQL (0.000056) SET SQL_AUTO_IS_NULL=0 | |
SQL (0.000364) SHOW TABLES | |
Tog::Config Columns (0.002972) SHOW FIELDS FROM `config` | |
Tog::Config Load (0.000086) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.site.name') LIMIT 1 | |
SQL (0.000285) SHOW TABLES | |
Tog::Config Load (0.000050) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.language.default') LIMIT 1 | |
SQL (0.000215) SHOW TABLES | |
Tog::Config Load (0.000046) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.mail.default_subject') LIMIT 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# tail -f log/development.log | |
SQL (0.000142) SET NAMES 'utf8' | |
SQL (0.000056) SET SQL_AUTO_IS_NULL=0 | |
SQL (0.000364) SHOW TABLES | |
Tog::Config Columns (0.002972) SHOW FIELDS FROM `config` | |
Tog::Config Load (0.000086) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.site.name') LIMIT 1 | |
SQL (0.000285) SHOW TABLES | |
Tog::Config Load (0.000050) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.language.default') LIMIT 1 | |
SQL (0.000215) SHOW TABLES | |
Tog::Config Load (0.000046) SELECT * FROM `config` WHERE (`config`.`key` = 'plugins.tog_core.mail.default_subject') LIMIT 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# cat config/environment.rb | |
# Be sure to restart your server when you modify this file | |
# Uncomment below to force Rails into production mode when | |
# you don't control web/app server and can't set it the proper way | |
ENV['RAILS_ENV'] ||= 'development' | |
ENV['GEM_PATH'] = '/home/useraxis/.gems:/usr/lib/ruby/gems/1.8' | |
# Specifies gem version of Rails to use when vendor/rails is not present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# cat config/environment.rb | |
# Be sure to restart your server when you modify this file | |
# Uncomment below to force Rails into production mode when | |
# you don't control web/app server and can't set it the proper way | |
ENV['RAILS_ENV'] ||= 'development' | |
ENV['GEM_PATH'] = '/home/useraxis/.gems:/usr/lib/ruby/gems/1.8' | |
# Specifies gem version of Rails to use when vendor/rails is not present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/rails/pimpi]# rake tog:plugins:test tog_user | |
(in /home/useraxis/rails/pimpi) | |
cd /home/useraxis/rails/pimpi/vendor/plugins/tog_core | |
(in /home/useraxis/rails/pimpi/vendor/plugins/tog_core) | |
/usr/bin/ruby -Ilib:lib "/usr/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/unit/config_test.rb" "test/unit/observer_test.rb" "test/unit/search_test.rb" "test/unit/plugins_test.rb" | |
/home/useraxis/rails/pimpi/vendor/plugins/tog/lib/tog/version.rb:3: warning: already initialized constant MAJOR | |
/home/useraxis/rails/pimpi/vendor/plugins/tog/lib/tog/version.rb:4: warning: already initialized constant MINOR | |
/home/useraxis/rails/pimpi/vendor/plugins/tog/lib/tog/version.rb:5: warning: already initialized constant TINY | |
/home/useraxis/rails/pimpi/vendor/plugins/tog/lib/tog/version.rb:6: warning: already initialized constant MODULE | |
/home/useraxis/rails/pimpi/vendor/plugins/tog/lib/tog/version.rb:7: warning: already initialized constant STRING |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActionView::TemplateError (Constant FileColumn::ClassMethods::Inflector from file_column/class_methods/inflector.rb not found | |
Constant FileColumn::Inflector from file_column/inflector.rb not found | |
Constant Inflector from inflector.rb not found) on line #26 of vendor/plugins/tog_core/app/views/home/index.html.erb: | |
23: <div class="portlet_content"> | |
24: <ul class="clearfix"> | |
25: <% last_users.each do |user|%> | |
26: <li><%=link_to icon_for_profile(user.profile, 'small'), profile_path(user.profile)%></li> | |
27: <%end %> |
OlderNewer