stack-rails 0.1.4 → 0.1.6

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: cd0aa52de89cdd0eed11366a67a6ddbbc8332bed
4
- data.tar.gz: d15adcb4dec15d9a990bce92a9a43cd96c8de6c8
3
+ metadata.gz: d3c898c0c18ff11fab8be6ebc4e99404e7426b34
4
+ data.tar.gz: 77c0ec06a77d41e89de0e012189b3f61756c060d
5
5
  SHA512:
6
- metadata.gz: 69a0dadbe01a31dc5924b0a983e0ea6d81d0c55482288cc51e2d27f51d38cbf26004b7020a833769f8b6c048c47f22b6ae932b525f3c9d7b26f1eb78250094b0
7
- data.tar.gz: 470aef770920a16d5fcfc352f533b7e283194e8c3cbe32793e1a595aff83fca2b56b5b17ef3e2668657fe5e6f4f1dd36ec7d06c5814b868f569b503b23397a33
6
+ metadata.gz: 2523c4419905be20058c5fe9c31a59873caf4ddc538aa90bf23daf1677a9254140bbc1bd40868ecb408dd08a3af71597d1d976d5c9495c493ff91389197fc2cd
7
+ data.tar.gz: 6ea6cc12c1475d47a47360ab08efa747f9bd6b5d26ccbf2b89907e5c5fb13ea35482051494a483390998d65ed5497e970dcbf8fc07675d849750f543f755f493
data/lib/core/library.rb CHANGED
@@ -1,5 +1,7 @@
1
- module Library
2
- def first_method
3
- return 'first_method'
1
+ module Core
2
+ module Library
3
+ def first_method
4
+ return 'first_method'
5
+ end
4
6
  end
5
7
  end
data/lib/core/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Core
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.6"
3
3
  end
data/lib/stack_rails.rb CHANGED
@@ -1,12 +1,13 @@
1
- require "core/version"
2
- require "core/library"
1
+ require_relative "core/version"
2
+ require_relative "core/library"
3
3
 
4
4
  class ShowStack
5
- include Library
5
+
6
+ include Core::Library
6
7
 
7
8
  attr_accessor :name, :nickname
8
9
 
9
10
  def initialize(init)
10
11
  @init = init
11
12
  end
12
- end
13
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stack-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - sashastip
@@ -51,8 +51,6 @@ files:
51
51
  - LICENSE.txt
52
52
  - README.md
53
53
  - Rakefile
54
- - bin/console
55
- - bin/setup
56
54
  - lib/core/library.rb
57
55
  - lib/core/version.rb
58
56
  - lib/stack_rails.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "stack/rails"
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 DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here