ygitme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 40079126dbe9116c0406354863a037ab4fddca9e
4
+ data.tar.gz: e1b575fd31acfc36ebeddca7c2034c9d2ad2e77f
5
+ SHA512:
6
+ metadata.gz: 301210dff451d8be6a985fde8074375484476432cf00e2d7f908ba862821eaf01e14472d5600f625639d247585795d03f9dda4abb7b7060af418f1e317b51d8f
7
+ data.tar.gz: 1c0b0f0c016c7fa9199a2df850bd3de1d3c2ba2e6661d3c541383dfc48dc104b77212550c232da4a6d526edf78358aaee8ba52501d44cac7d43eeea4ed410e21
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.1
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ygitme.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # Ygitme
2
+
3
+ Ygitme is a git commands-challenger
4
+ =======
5
+
6
+ ## Contributing
7
+
8
+ 1. Fork it ( https://github.com/[my-github-username]/ygitme/fork )
9
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
10
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
11
+ 4. Push to the branch (`git push origin my-new-feature`)
12
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ygitme"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/bin/ygitme ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'ygitme'
4
+
5
+ hello = Ygitme::Hello.new
6
+ hello.say_hello
data/lib/ygitme.rb ADDED
@@ -0,0 +1,9 @@
1
+ require "ygitme/version"
2
+
3
+ module Ygitme
4
+ class Hello
5
+ def say_hello
6
+ puts 'This is ygitme. Please start hacking.'
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module Ygitme
2
+ VERSION = "0.1.0"
3
+ end
data/ygitme.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ygitme/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ygitme"
8
+ spec.version = Ygitme::VERSION
9
+ spec.authors = ["Svetlana Filimonova"]
10
+ spec.email = ["sfilimonova@me.com"]
11
+
12
+ spec.summary = %q{Ygitme is a command line tool to learn git commands.}
13
+ spec.description = %q{Ygitme is a command line tool to learn git commands.}
14
+ spec.homepage = "http://pewpew.com"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.executables = ["ygitme"]
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.9"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ygitme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Svetlana Filimonova
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Ygitme is a command line tool to learn git commands.
42
+ email:
43
+ - sfilimonova@me.com
44
+ executables:
45
+ - ygitme
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".travis.yml"
51
+ - Gemfile
52
+ - README.md
53
+ - Rakefile
54
+ - bin/console
55
+ - bin/setup
56
+ - bin/ygitme
57
+ - lib/ygitme.rb
58
+ - lib/ygitme/version.rb
59
+ - ygitme.gemspec
60
+ homepage: http://pewpew.com
61
+ licenses: []
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.2.2
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: Ygitme is a command line tool to learn git commands.
83
+ test_files: []