forked from narender2031/study
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e86d3f3
commit 2881478
Showing
4,553 changed files
with
552,714 additions
and
8 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
def get_name | ||
print "Enter your name: " | ||
name = gets.chomp | ||
yield name | ||
name | ||
end | ||
|
||
my_name = get_name do |name| | ||
print "This the cool name, #{name}!" | ||
end | ||
|
||
puts "My name: #{my_name}" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.times{puts "Hello manu"} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
def block_method | ||
puts "This is first block line in block method" | ||
yield | ||
puts "Method is end !" | ||
end | ||
|
||
block_method do | ||
puts "This is sentense called in block" | ||
end | ||
|
||
block_method do | ||
puts "Family time for manu" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
def get_name(prompt, &block) | ||
print prompt + ": " | ||
name = gets.chomp | ||
print "Age: " | ||
age = gets.chomp | ||
block.call(name, age) | ||
name | ||
end | ||
|
||
my_name = get_name("Enter your name") do |name, age| | ||
print "This the cool name, #{name}!" | ||
print "My age is #{age}" | ||
end | ||
|
||
puts "My name: #{my_name}" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
class MyArray | ||
attr_reader :array | ||
def initialize | ||
@array = [] | ||
end | ||
|
||
def push() | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class SimpleBanchmarker | ||
def run(&block) | ||
start_time = Time.now | ||
block.call | ||
end_time = Time.now | ||
elapsed = end_time - start_time | ||
puts "Elasped time: #{elapsed}" | ||
end | ||
end | ||
|
||
banchmarker = SimpleBanchmarker.new | ||
banchmarker.run do | ||
5.times do | ||
sleep(rand(0.1..1.0)) | ||
end | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class AddressBook | ||
def contact | ||
puts "Hii there how can i help u ?" | ||
|
||
end | ||
|
||
def name | ||
puts "manu" | ||
end | ||
|
||
end | ||
|
||
a = AddressBook.new | ||
puts a.contact |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
/node_modules | ||
/yarn-error.log | ||
|
||
.byebug_history |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
source 'https://rubygems.org' | ||
|
||
git_source(:github) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 5.1.4' | ||
# Use postgresql as the database for Active Record | ||
gem "passenger", ">= 5.0.25", require: "phusion_passenger/rack_handler" | ||
gem 'pg', '~> 0.18' | ||
# Use Puma as the app server | ||
# gem 'puma', '~> 3.7' | ||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 5.0' | ||
# Use Uglifier as compressor for JavaScript assets | ||
gem 'uglifier', '>= 1.3.0' | ||
# See https://github.com/rails/execjs#readme for more supported runtimes | ||
# gem 'therubyracer', platforms: :ruby | ||
|
||
# Use CoffeeScript for .coffee assets and views | ||
gem 'coffee-rails', '~> 4.2' | ||
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | ||
gem 'turbolinks', '~> 5' | ||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
gem 'jbuilder', '~> 2.5' | ||
# Use Redis adapter to run Action Cable in production | ||
# gem 'redis', '~> 3.0' | ||
# Use ActiveModel has_secure_password | ||
# gem 'bcrypt', '~> 3.1.7' | ||
|
||
# Use Capistrano for deployment | ||
# gem 'capistrano-rails', group: :development | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
# Adds support for Capybara system testing and selenium driver | ||
gem 'capybara', '~> 2.13' | ||
gem 'selenium-webdriver' | ||
end | ||
|
||
group :development do | ||
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | ||
gem 'web-console', '>= 3.3.0' | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | ||
gem 'spring-watcher-listen', '~> 2.0.0' | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actioncable (5.1.4) | ||
actionpack (= 5.1.4) | ||
nio4r (~> 2.0) | ||
websocket-driver (~> 0.6.1) | ||
actionmailer (5.1.4) | ||
actionpack (= 5.1.4) | ||
actionview (= 5.1.4) | ||
activejob (= 5.1.4) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.1.4) | ||
actionview (= 5.1.4) | ||
activesupport (= 5.1.4) | ||
rack (~> 2.0) | ||
rack-test (>= 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.1.4) | ||
activesupport (= 5.1.4) | ||
builder (~> 3.1) | ||
erubi (~> 1.4) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.3) | ||
activejob (5.1.4) | ||
activesupport (= 5.1.4) | ||
globalid (>= 0.3.6) | ||
activemodel (5.1.4) | ||
activesupport (= 5.1.4) | ||
activerecord (5.1.4) | ||
activemodel (= 5.1.4) | ||
activesupport (= 5.1.4) | ||
arel (~> 8.0) | ||
activesupport (5.1.4) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
addressable (2.5.2) | ||
public_suffix (>= 2.0.2, < 4.0) | ||
arel (8.0.0) | ||
bindex (0.5.0) | ||
builder (3.2.3) | ||
byebug (10.0.0) | ||
capybara (2.17.0) | ||
addressable | ||
mini_mime (>= 0.1.3) | ||
nokogiri (>= 1.3.3) | ||
rack (>= 1.0.0) | ||
rack-test (>= 0.5.4) | ||
xpath (>= 2.0, < 4.0) | ||
childprocess (0.8.0) | ||
ffi (~> 1.0, >= 1.0.11) | ||
coffee-rails (4.2.2) | ||
coffee-script (>= 2.2.0) | ||
railties (>= 4.0.0) | ||
coffee-script (2.4.1) | ||
coffee-script-source | ||
execjs | ||
coffee-script-source (1.12.2) | ||
concurrent-ruby (1.0.5) | ||
crass (1.0.3) | ||
erubi (1.7.0) | ||
execjs (2.7.0) | ||
ffi (1.9.21) | ||
globalid (0.4.1) | ||
activesupport (>= 4.2.0) | ||
i18n (0.9.4) | ||
concurrent-ruby (~> 1.0) | ||
jbuilder (2.7.0) | ||
activesupport (>= 4.2.0) | ||
multi_json (>= 1.2) | ||
listen (3.1.5) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
ruby_dep (~> 1.2) | ||
loofah (2.1.1) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.0) | ||
mini_mime (>= 0.1.1) | ||
method_source (0.9.0) | ||
mini_mime (1.0.0) | ||
mini_portile2 (2.3.0) | ||
minitest (5.11.3) | ||
multi_json (1.13.1) | ||
nio4r (2.2.0) | ||
nokogiri (1.8.2) | ||
mini_portile2 (~> 2.3.0) | ||
passenger (5.2.0) | ||
rack | ||
rake (>= 0.8.1) | ||
pg (0.21.0) | ||
public_suffix (3.0.1) | ||
rack (2.0.4) | ||
rack-test (0.8.2) | ||
rack (>= 1.0, < 3) | ||
rails (5.1.4) | ||
actioncable (= 5.1.4) | ||
actionmailer (= 5.1.4) | ||
actionpack (= 5.1.4) | ||
actionview (= 5.1.4) | ||
activejob (= 5.1.4) | ||
activemodel (= 5.1.4) | ||
activerecord (= 5.1.4) | ||
activesupport (= 5.1.4) | ||
bundler (>= 1.3.0) | ||
railties (= 5.1.4) | ||
sprockets-rails (>= 2.0.0) | ||
rails-dom-testing (2.0.3) | ||
activesupport (>= 4.2.0) | ||
nokogiri (>= 1.6) | ||
rails-html-sanitizer (1.0.3) | ||
loofah (~> 2.0) | ||
railties (5.1.4) | ||
actionpack (= 5.1.4) | ||
activesupport (= 5.1.4) | ||
method_source | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (12.3.0) | ||
rb-fsevent (0.10.2) | ||
rb-inotify (0.9.10) | ||
ffi (>= 0.5.0, < 2) | ||
ruby_dep (1.5.0) | ||
rubyzip (1.2.1) | ||
sass (3.5.5) | ||
sass-listen (~> 4.0.0) | ||
sass-listen (4.0.0) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
sass-rails (5.0.7) | ||
railties (>= 4.0.0, < 6) | ||
sass (~> 3.1) | ||
sprockets (>= 2.8, < 4.0) | ||
sprockets-rails (>= 2.0, < 4.0) | ||
tilt (>= 1.1, < 3) | ||
selenium-webdriver (3.9.0) | ||
childprocess (~> 0.5) | ||
rubyzip (~> 1.2) | ||
spring (2.0.2) | ||
activesupport (>= 4.2) | ||
spring-watcher-listen (2.0.1) | ||
listen (>= 2.7, < 4.0) | ||
spring (>= 1.2, < 3.0) | ||
sprockets (3.7.1) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.2.1) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
thor (0.20.0) | ||
thread_safe (0.3.6) | ||
tilt (2.0.8) | ||
turbolinks (5.1.0) | ||
turbolinks-source (~> 5.1) | ||
turbolinks-source (5.1.0) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
uglifier (4.1.6) | ||
execjs (>= 0.3.0, < 3) | ||
web-console (3.5.1) | ||
actionview (>= 5.0) | ||
activemodel (>= 5.0) | ||
bindex (>= 0.4.0) | ||
railties (>= 5.0) | ||
websocket-driver (0.6.5) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.3) | ||
xpath (3.0.0) | ||
nokogiri (~> 1.8) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
byebug | ||
capybara (~> 2.13) | ||
coffee-rails (~> 4.2) | ||
jbuilder (~> 2.5) | ||
listen (>= 3.0.5, < 3.2) | ||
passenger (>= 5.0.25) | ||
pg (~> 0.18) | ||
rails (~> 5.1.4) | ||
sass-rails (~> 5.0) | ||
selenium-webdriver | ||
spring | ||
spring-watcher-listen (~> 2.0.0) | ||
turbolinks (~> 5) | ||
tzinfo-data | ||
uglifier (>= 1.3.0) | ||
web-console (>= 3.3.0) | ||
|
||
BUNDLED WITH | ||
1.15.4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# README | ||
|
||
This README would normally document whatever steps are necessary to get the | ||
application up and running. | ||
|
||
Things you may want to cover: | ||
|
||
* Ruby version | ||
|
||
* System dependencies | ||
|
||
* Configuration | ||
|
||
* Database creation | ||
|
||
* Database initialization | ||
|
||
* How to run the test suite | ||
|
||
* Services (job queues, cache servers, search engines, etc.) | ||
|
||
* Deployment instructions | ||
|
||
* ... |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require_relative 'config/application' | ||
|
||
Rails.application.load_tasks |
Oops, something went wrong.