ideapad 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.
data/ideapad.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "ideapad/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "ideapad"
7
+ s.version = Ideapad::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Alex Sharp"]
10
+ s.email = ["ajsharp@gmail.com"]
11
+ s.homepage = "https://github.com/ajsharp/ideapad"
12
+ s.summary = %q{Tiny utility for keeping track of ideas.}
13
+ s.description = %q{Tiny utility for keeping track of ideas.}
14
+
15
+ s.rubyforge_project = "ideapad"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
@@ -56,7 +56,6 @@ module Ideapad
56
56
  # IdeaList instance
57
57
  def self.load!
58
58
  if File.exist?(db)
59
- save
60
59
  new Marshal.load(File.read(db))
61
60
  else
62
61
  new
@@ -0,0 +1,3 @@
1
+ module Ideapad
2
+ VERSION = '0.1.1'
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ideapad
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -21,9 +21,11 @@ extra_rdoc_files: []
21
21
  files:
22
22
  - README.md
23
23
  - bin/idea
24
+ - ideapad.gemspec
24
25
  - lib/ideapad.rb
25
26
  - lib/ideapad/idea.rb
26
27
  - lib/ideapad/idea_list.rb
28
+ - lib/ideapad/version.rb
27
29
  homepage: https://github.com/ajsharp/ideapad
28
30
  licenses: []
29
31
  post_install_message: