Commit 4b115c2

mo <mo.khan@gmail.com>
2018-12-23 21:02:57
update gemspec
1 parent 78d6815
spec/scim/kit_spec.rb
@@ -1,9 +1,3 @@
 RSpec.describe Scim::Kit do
-  it "has a version number" do
-    expect(Scim::Kit::VERSION).not_to be nil
-  end
-
-  it "does something useful" do
-    expect(false).to eq(true)
-  end
+  specify { expect(Scim::Kit::VERSION).not_to be_nil }
 end
.gitignore
@@ -9,3 +9,4 @@
 
 # rspec failure tracking
 .rspec_status
+Gemfile.lock
scim-kit.gemspec
@@ -7,26 +7,13 @@ Gem::Specification.new do |spec|
   spec.name          = "scim-kit"
   spec.version       = Scim::Kit::VERSION
   spec.authors       = ["mo"]
-  spec.email         = ["mo.khan@gmail.com"]
+  spec.email         = ["mo@mokhan.ca"]
 
-  spec.summary       = %q{TODO: Write a short summary, because RubyGems requires one.}
-  spec.description   = %q{TODO: Write a longer description or delete this line.}
-  spec.homepage      = "TODO: Put your gem's website or public repo URL here."
+  spec.summary       = %q{A SCIM library.}
+  spec.description   = %q{A SCIM library.}
+  spec.homepage      = "https://www.mokhan.ca/"
   spec.license       = "MIT"
 
-  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
-  # to allow pushing to a single host or delete this section to allow pushing to any host.
-  if spec.respond_to?(:metadata)
-    spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
-
-    spec.metadata["homepage_uri"] = spec.homepage
-    spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
-    spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
-  else
-    raise "RubyGems 2.0 or newer is required to protect against " \
-      "public gem pushes."
-  end
-
   # Specify which files should be added to the gem when it is released.
   # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
   spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do