pikabu 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f79b000f5c56c0aca8638bfc1b933f95e61a3a2
4
- data.tar.gz: 654bdc3809634193cc93d9e4941024c651be91f5
3
+ metadata.gz: 13c7e36c85967921051f25363de986656cd5a395
4
+ data.tar.gz: 0321b7873d3f0ce070b21ca407971082309bdf41
5
5
  SHA512:
6
- metadata.gz: 9da556f1cb6f448e4d4d617778aafc485b09278f2cdfaa5100b1e7570ecce98bd35ce26682108b9deb0f4810eeb9d7ba2fa5f7ed2a208b278433698b2dfaad2f
7
- data.tar.gz: ef4239cec0662e3bde176f6915b44bc621e0493c5ac101df4bff6184669553dcc16b561c39d033e6575b2d3eec8dda946f190df99bf3b20486cebec527c40764
6
+ metadata.gz: ef72b97ae8107c336110c2f60b58b2854bbba3ce6056b2ac3db99de1d3ae109419bb652444c1b571e7fb0b1d98085a4acb34cf5ab0d9591113eff48c8aeda23a
7
+ data.tar.gz: c32899688263f16c51d8e7bd99c16c7df48c73bb3df2c92cea36736d1e4928cb5a4f9e3f6dc7e8a2238929137b2adb66474ffab3ed754653c137a648b22024d3
@@ -3,12 +3,5 @@
3
3
  require "bundler/setup"
4
4
  require "pikabu"
5
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
6
  require "irb"
14
7
  IRB.start
data/bin/setup CHANGED
@@ -3,5 +3,3 @@ set -euo pipefail
3
3
  IFS=$'\n\t'
4
4
 
5
5
  bundle install
6
-
7
- # Do any other automated setup that you need to do here
@@ -41,10 +41,10 @@ class Pikabu
41
41
  def new_file
42
42
  path_array = @file_path.split("/")
43
43
  if path_array.length==1
44
- @current_path = "#{@pwd}/temp.rb"
44
+ @current_path = "#{@pwd}/pikabu_temp.rb"
45
45
  else
46
46
  var = path_array[0..-2].join('/')
47
- @current_path = "#{@pwd}/#{var}/temp.rb"
47
+ @current_path = "#{@pwd}/#{var}/pikabu_temp.rb"
48
48
  end
49
49
  @f = File.new("#{@current_path}", "w")
50
50
  end
@@ -1,3 +1,3 @@
1
1
  class Pikabu
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pikabu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dana Najjar, Waruna Perera
@@ -66,10 +66,9 @@ files:
66
66
  - bin/console
67
67
  - bin/pikabu
68
68
  - bin/setup
69
- - demo.rb
70
69
  - lib/pikabu.rb
71
70
  - lib/pikabu/version.rb
72
- - pikabu-0.1.0.gem
71
+ - pikabu-0.1.1.gem
73
72
  - pikabu.gemspec
74
73
  homepage: https://github.com/dnajjar/pikabu
75
74
  licenses:
data/demo.rb DELETED
@@ -1,4 +0,0 @@
1
- def hello
2
- HELLO
3
- end
4
- hello
Binary file