Ruby on Rails Wednesday, November 30, 2016

Hi everyone,

I am happy to announce that Rails 5.0.1.rc1 has been released.

If no regressions are found, expect the final release on Tuesday, December 6, 2016.
If you find one, please open an [issue on GitHub](https://github.com/rails/rails/issues/new)
and mention me (@matthewd) on it, so that we can fix it before the final release.

## CHANGES since 5.0.0

To view the changes for each gem, please read the changelogs on GitHub:

* [Action Cable CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/actioncable/CHANGELOG.md)
* [Action Mailer CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/actionmailer/CHANGELOG.md)
* [Action Pack CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/actionpack/CHANGELOG.md)
* [Action View CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/actionview/CHANGELOG.md)
* [Active Job CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/activejob/CHANGELOG.md)
* [Active Model CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/activemodel/CHANGELOG.md)
* [Active Record CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/activerecord/CHANGELOG.md)
* [Active Support CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/activesupport/CHANGELOG.md)
* [Railties CHANGELOG](https://github.com/rails/rails/blob/v5.0.1.rc1/railties/CHANGELOG.md)

*Full listing*

To see the full list of changes, [check out all the commits on
GitHub](https://github.com/rails/rails/compare/v5.0.0...v5.0.1.rc1).

## SHA-1

If you'd like to verify that your gem is the same as the one I've uploaded,
please use these SHA-1 hashes.

Here are the checksums for 5.0.1.rc1:

```
$ shasum *-5.0.1.rc1.gem
f912b040b65f335c93ae888eb3317a8b161abbb1 actioncable-5.0.1.rc1.gem
2f6190125148b61871fd01323798cfbfbf267723 actionmailer-5.0.1.rc1.gem
161e6e15206028d76c8f2d4822c8783f16ac46ec actionpack-5.0.1.rc1.gem
09f86171dfdb6d60146b3028cd71b5760e8c2432 actionview-5.0.1.rc1.gem
8506ea383e722304614f89e3757bf2546d5c6d8f activejob-5.0.1.rc1.gem
25c3f96faee14dcbc3d91a465ad6b3866fd19cfb activemodel-5.0.1.rc1.gem
2e01ee70c2e3b49885ae9b1a845d33327c7010e8 activerecord-5.0.1.rc1.gem
02412998c47a1ca8d1b7459976b98414aa535916 activesupport-5.0.1.rc1.gem
cae7d263e8128fab14b72d32ad6e82e436fd58bc rails-5.0.1.rc1.gem
5193a647536cd700b13c18e6de6a4382ead7c6e0 railties-5.0.1.rc1.gem
```

As always, huge thanks to the many contributors who helped with this release.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/9BB32CCA-1532-4D91-B40E-1E4AA8710B2A%40trebex.net.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Comece seu novo ano ouvindo as músicas que quiser.

Escute música on-demand, offline e sem anúncios. Com o Spotify Premium, você curte todas as músicas que quiser. Aproveite a oferta, são apenas R$ 1,99 por 3 meses.
APROVEITE 3 MESES POR R$ 1,99
Sujeito a restrições, são aplicáveis termos e condições.
Depois, apenas R$ 16,90/mês.
A oferta é válida até 1º de janeiro.

Ruby on Rails Monday, November 28, 2016

On 28 November 2016 at 18:23, Furqan Ahmad <faari27@gmail.com> wrote:
i am new in ruby and just developing my first app, i am following a tutorial on youtube, when i run the server by localhost:3000 it shows me "Yay! You're on Rails!". i don't know how to route it to index.html file in my home where i start developing my app. please need help i am new here.

I suggest working through the tutorial at railstutorial.org which will give you a good introduction to rails and is free to use online.

Colin
 

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLuRKj6C%2BqVkk78FXhHz9wWhKkKvDUoxFMJYkuwvoQSR5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

You have to create a home controller and set your root_path in the routes.rb to root 'home#index'i

Hope this helps.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/3dc3a154-af17-4c42-a6f1-020f60418510%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

i am new in ruby and just developing my first app, i am following a tutorial on youtube, when i run the server by localhost:3000 it shows me "Yay! You're on Rails!". i don't know how to route it to index.html file in my home where i start developing my app. please need help i am new here.

here is my routes.rb file


Rails.application.routes.draw do
get 'home/index'

For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html

end

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a72c53da-84f9-4b46-896b-9adb0addde38%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails Friday, November 25, 2016

Hi all,

Can't seem to find why I'm getting an "invalid_redirect_uri"

When I go to "/auth/createsend/" the link does redirect me to campaignmonitor user login screen, but when I click on "Allow access" I'm getting the "invalid_redirect_uri" error.

I have an entry in my routes.rb file with the exact url that I've registered in CampaignMonitor permited Applications.

 CampaignMonitor url -> http://127.0.0.1:3000/auth/createsend/callback
Routes.rb entry -> get '/auth/:provider/callback',to:'sessions#create'

Thanks in advance!

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/7cf895e4-0997-4fc6-bd0a-eb8ec6e45756%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails Thursday, November 24, 2016

On Thu, Nov 24, 2016 at 2:20 AM, Frederick Cheung
<frederick.cheung@gmail.com> wrote:

> If you're on aws, then aws cloudwatch has a logs feature these days. It can
> do some things like creating metrics / alarms from logs, but it's not
> anything as full featured as logstash / elasticsearch/ kibana. If you just
> want to store logs for possible future analysis, it's fine though.

This is an option, but the AWS web UI is painful at best, and there
doesn't appear to be (or I haven't found) any CloudWatch CLI that
provides access to the saved logs.

The main use case is troubleshooting errors where Honeybadger
doesn't provide enough context, if that helps clarify :-)

Thanks for the thoughts!
--
Hassan Schroeder ------------------------ hassan.schroeder@gmail.com
twitter: @hassan
Consulting Availability : Silicon Valley or remote

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yAcu0oWU%3D9i1WUPjf8qLyOT1-A5W1PavS-K90W-kfUutQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

On Thu, Nov 24, 2016 at 2:17 AM, 'Stefan Frank' via Ruby on Rails:
Talk <rubyonrails-talk@googlegroups.com> wrote:

> setting up an Elastic-Stack(https://www.elastic.co),

ELK is an option since we're already using Elasticsearch for text
search but I'd rather have log files stay in plain-text format.

TBD, might have to give on that... :-/

> application-events we want to monitor

That sounds useful, but in this case it's already handled by another
3rd-party service because events are also generated in iOS/Android
mobile clients.

Thanks for the perspective!
--
Hassan Schroeder ------------------------ hassan.schroeder@gmail.com
twitter: @hassan
Consulting Availability : Silicon Valley or remote

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yCyKEsff-6jiOK5xLzvO_FGZAh3%2BJTX3BO3ApYQV9d7_g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails



On Tuesday, November 22, 2016 at 5:35:32 PM UTC, Hassan Schroeder wrote:
I'm looking for recommendations on consolidating Rails logs from
multiple servers[*] into one.

[*] AWS EC2 instances running Ubuntu 16.04 + Ruby 2.3.x/Rails 5

Bonus points for workable integration with Docker instances.

Extra bonus points if the end point is a third-party service AND it
offers a HIPAA-compliant BA environment :-)


If you're on aws, then aws cloudwatch has a logs feature these days. It can do some things like creating metrics / alarms from logs, but it's not anything as full featured as logstash / elasticsearch/ kibana. If you just want to store logs for possible future analysis, it's fine though.

Fred

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f26ac7cf-26b4-4734-a658-4274cc8da554%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

probably not getting any Bonus points for pointing out that there are existing ami-images for setting up an Elastic-Stack(https://www.elastic.co), consisting of logstash (for sending out logfiles), elasticsearch (for collecting them centrally and making them searchable), and kibana (for visualising log-events). Integrating this into a ruby/rails-app is pretty straightforward, for rails there already exist log-adapters to properly json-format log-entries. We're also using this setup for sending out application-events we want to monitor (user logged in, purchase completed, item viewed etc.) - and then let logstash sort out where to put them. So apart from consolidating, this also comes in handy for splitting up logs into different buckets. Logstash had had its issues in the beginning, but has come a long way since Elastic has put it under its wings and now basically "just works"(tm). 

There are also existing docker-images for the whole elastic-stack, right now we just throw logstash in with our application-container and have the elasticsearch-server run in another container.

Works quite straightforward for us, reasonably easy to set-up, covers a wide range of scenarios, works for us, 

ok, now for half a bonus-point: There is also a hosted version called ElasticCloud (https://www.elastic.co/cloud/as-a-service), but it isn't exactly cheap and we haven't tested it...


Am Dienstag, 22. November 2016 18:35:32 UTC+1 schrieb Hassan Schroeder:
I'm looking for recommendations on consolidating Rails logs from
multiple servers[*] into one.

[*] AWS EC2 instances running Ubuntu 16.04 + Ruby 2.3.x/Rails 5

Bonus points for workable integration with Docker instances.

Extra bonus points if the end point is a third-party service AND it
offers a HIPAA-compliant BA environment :-)

TIA!
--
Hassan Schroeder ------------------------ hassan.s...@gmail.com
twitter: @hassan
Consulting Availability : Silicon Valley or remote

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/32faca6b-a8f9-48d6-b177-f42bec0900f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails Wednesday, November 23, 2016

On Wed, Nov 23, 2016 at 7:51 AM, Joe Guerra <jguerra@jginfosys.com> wrote:
> try this?
> https://newrelic.com/ruby

Thanks, we already use NewRelic - even the free tier is super useful -
but that has nothing to do with exporting/consolidating logs.

>> I'm looking for recommendations on consolidating Rails logs from
>> multiple servers[*] into one.

--
Hassan Schroeder ------------------------ hassan.schroeder@gmail.com
http://about.me/hassanschroeder
twitter: @hassan
Consulting Availability : Silicon Valley or remote

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yBq4jTHMjnBJ1RbdRokebaBefJVy9w8LaN9ZGnG6Lk3gw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

try this? 
https://newrelic.com/ruby

On Tuesday, November 22, 2016 at 12:35:32 PM UTC-5, Hassan Schroeder wrote:
I'm looking for recommendations on consolidating Rails logs from
multiple servers[*] into one.

[*] AWS EC2 instances running Ubuntu 16.04 + Ruby 2.3.x/Rails 5

Bonus points for workable integration with Docker instances.

Extra bonus points if the end point is a third-party service AND it
offers a HIPAA-compliant BA environment :-)

TIA!
--
Hassan Schroeder ------------------------ hassan.s...@gmail.com
twitter: @hassan
Consulting Availability : Silicon Valley or remote

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/18f2dc27-e391-4300-8594-7d5474eba42c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Hello Art,

We have a urgent requirement for "Ruby on Rails Developer" position at South San Jose, CA

 

Job Title: Ruby on Rails Developer

Location: South San Jose, CA

Duration: Long Term / Full time

 

Job Description:

We are looking for an outstanding full-stack cloud developer to help build, enhance and scale our cloud platform. 
 
Responsibilities 

·         Write efficient, high-quality code and unit, integration and load tests

·         Work closely with DevOps and SQA to build, debug, maintain and deploy systems that are highly available, scalable, performant and supportable

·         Analyze use cases and design, prototype and refine web user interfaces that serve our end users, with an emphasis on data visualization and analysis

·         Gather, document and refine requirements and specifications

 
Minimum Experience and Skills

·         At least 4 years of cloud-oriented software development experience

·         At least 2 years of working experience using Ruby on Rails to build both front-end web applications and web services

·         At least 2 years of working experience building easy-to-use web applications

·         Top-notch programming and debugging skills and an in-depth knowledge of Ruby, Rails, RSpec, databases, JavaScript, HTML and CSS

·         Strong skills in software design, debugging and problem solving

·         Experience with building, and maintaining highly available and scalable web services in a Service Oriented or Microservices architecture

·         Ability to work and thrive in a dynamic startup environment with evolving needs and requirements and multiple, concurrent projects

·         A self-starter with a passionate dedication to quality and a sense of personal accountability

·         Flexible enough to use the best technology for the problem at hand and motivated to learn on the job

·         Excellent written and verbal communication skills

·         Bachelor's Degree in Computer Science or equivalent

 
Desirable Experience and Skills

·         Docker-based CI-CD (Continuous Integration and Continuous Deployment)

·         Experience with load testing, profiling, performance and scalability analysis

·         Internet security and privacy

 
Buzz Words:
Ruby, Rails, RSpec, MongoDB, NoSQL, MySQL, Web Services, REST, JSON, Node.js, Microservices, Docker, JavaScript, Java, HTML, HTML5, CSS, AWS, HA, IoT, Linux

 

Please Include the below details:

Full Name:

 

Contact:

 

Email:

 

Current location:

 

Open to relocate or Location Preferences:

 

Work authorization & Valid Till:

 

DOB(MM/YYYY):

 

Currently in project:

 

Availability to Start:

 

Last 4 digits SSN:

 

Skype ID:

 

Total Years of IT Exp./Relevant Exp.:

 

Experience working in US:

 

Highest Education (Bachelors/Masters):

 

Degree of Specialization:

 

University/College:

 

Year of Graduation/Post-Graduation:

 

LinkedIn ID:

 

Rate:

 

 

Awaiting for your reply

 

Best Regards,
Rajesh | Manager - IT Staffing
Phone: (302) 231-1289
Email: 
rajesh.n@byteorigin.com | www.byteorigin.com 
IT Solutions | Staff Augmentation 


On Friday, 21 October 2016 10:54:42 UTC-4, a...@prela.io wrote:
Hi Alexander,

I am interested in this position.  I have helped some BIG TIME organizations (Department of State, Harvard, among others) with their Ruby projects. 

When can we connect to learn more?

Best,

Art

On Thursday, October 20, 2016 at 1:57:53 AM UTC-4, Alexander Ryseff wrote:

Viri Technology is seeking a senior level, full stack software engineer for a software client in Seattle.  This is a unique opportunity for a few reasons:

- It's a BIG TIME software company
- They have a highly collaborative team, and it's the kind of team that loves sharing ideas, paired programming, and trying the latest design patterns/techniques when applicable.
- The company has a great "vibe"; they are in the digital assets industry, they promote from within and are truly a technology company that values great software engineering talent.

Requirements:

- 7+ years of full stack, OOP expertise, ideally with Ruby on Rails(2+)
- Be a collaborative, communicative developer!  If you are someone that would rather work a 5 year government contract that is a "clock in, clock out, collect my paycheck" type of engineer, this is not the role for you.  We want candidates with a positive "fire" in their belly to make an impact, own a product, and take pride in developing something new and creative.
- Solid UI chops; you don't have to be a designer, but having a "webby" mindset for things like JavaScript/HTML5/CSS3 and the modern JavaScript libraries would be very helpful
- You have fun at work, you do your best to "level up" the team and you are able to check your ego at the door and want to learn something new.  You love being around other smart people and making an impact.

If you feel qualified and interested in this immediate, long term contract (with potential to hire) opportunity, let's chat immediately! 


Note: We are unable to sponsor new U.S. work visas at this time. Employment in this position may be contingent upon successful completion of a criminal and/or credit background investigation.




--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/470d41c5-8274-4bc2-aa41-6986836732a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Queremos te agradecer por usar o Spotify em 2016: aproveite 3 meses de Premium por apenas R$ 1,99.
VÁ DE PREMIUM

Baixe suas músicas.
Escute onde estiver.

Sem anúncios.
Ouça música sem parar.

Escute qualquer música.
Mesmo no celular.

Pule quantas faixas quiser.

Passe a música a qualquer momento.
VÁ DE PREMIUM
Sujeito a restrições, são aplicáveis termos e condições.
Depois, apenas R$ 16,90/mês.
A oferta é válida até 1º de janeiro.