ishapi 0.1.0 → 0.1.1

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: 016e158403897ec6cfd97e14f36532f9b615c14d
4
- data.tar.gz: 256e73bc279fcbeab0f800c45ce92a74283a6637
3
+ metadata.gz: 5a24eab5a3e3998d65041dd93dca6b7aabc709e6
4
+ data.tar.gz: a35faf62cc2256604dcd253b618e83cb0e7db8a6
5
5
  SHA512:
6
- metadata.gz: 8678bd7fda290bcd841f1e3ba4217f6ca7eb5a1301918d59427a66ac9b2c45de1a94ec81034ede5cbe3082e2dd282bdd52798701492b319bebdf5f27e4a1b445
7
- data.tar.gz: 7867b5f5fe1b339698c2723b459066223a1884e32c58adc3f89e2a17bfae3b035af74875bf64674b162b375d5fa57de459345337e2818a1263a4d042928433fd
6
+ metadata.gz: aba914b5efedb7f7e613a15706ac3bb54b27a1ec523f614dc86c5b63e44c600c82c421c8234b3cbccfbf4b01fcea43163e36d5685f27565081769b13d577ad62
7
+ data.tar.gz: 81cbc5b5310d6af588295ab138fded8f5d19a177231abe29fa93d136a598380b8ade0f10bacea3d5fd729864fed3cebdcf1650e8fe1814c8b487db5f45ae1925
data/README.md CHANGED
@@ -1,28 +1,5 @@
1
- # Ishapi
2
- Short description and motivation.
3
1
 
4
- ## Usage
5
- How to use my plugin.
6
-
7
- ## Installation
8
- Add this line to your application's Gemfile:
9
-
10
- ```ruby
11
- gem 'ishapi'
12
- ```
13
-
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
18
-
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install ishapi
22
- ```
23
-
24
- ## Contributing
25
- Contribution directions go here.
26
-
27
- ## License
28
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
2
+ # Develop
3
+ # Test
4
+ # Install
5
+ gem build ishapi.gemspec
@@ -1,5 +1,5 @@
1
1
  module Ishapi
2
- class ApplicationRecord < ActiveRecord::Base
2
+ class ApplicationRecord
3
3
  self.abstract_class = true
4
4
  end
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module Ishapi
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ishapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 5.1.0
27
- - !ruby/object:Gem::Dependency
28
- name: sqlite3
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  description: " Description of Ishapi."
42
28
  email:
43
29
  - piousbox@gmail.com
@@ -76,7 +62,6 @@ files:
76
62
  - app/views/ishapi/cities/show.jbuilder~
77
63
  - app/views/layouts/ishapi/application.html.erb
78
64
  - config/routes.rb
79
- - db/migrate/20170510193542_create_ishapi_articles.rb
80
65
  - lib/ishapi.rb
81
66
  - lib/ishapi/engine.rb
82
67
  - lib/ishapi/version.rb
@@ -1,10 +0,0 @@
1
- class CreateIshapiArticles < ActiveRecord::Migration[5.1]
2
- def change
3
- create_table :ishapi_articles do |t|
4
- t.string :title
5
- t.text :text
6
-
7
- t.timestamps
8
- end
9
- end
10
- end