nsl 0.0.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 +7 -0
- data/.gemspec +27 -0
- data/.gitignore +1 -0
- data/LICENSE +13 -0
- data/Rakefile +30 -0
- data/VERSION +1 -0
- data/lib/nsl.rb +4 -0
- metadata +64 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c8f542b1c91f8caefbf168f0c1b388ef55eb2d1d
|
|
4
|
+
data.tar.gz: db99ebd18fdd1e497b3aa6bf695a6a8e6b764116
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9fb1c6502c060a957b867828004ae071241c3f478573f35cd37ef436044757812bd4b47fec2aeea2ae6623718ddd2c901cc5f03aa48212b26ff1ef47e91bfcfa
|
|
7
|
+
data.tar.gz: 432a7753d88370ac5a87d6a126fc4917259ee10cd0033b5d1070916fa3a64776b2a5159be3cef7aa794004b9d369501f06b3179efd42cdd09704ed6f04959c32
|
data/.gemspec
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = "nsl"
|
|
5
|
+
s.version = File.read("VERSION").strip
|
|
6
|
+
s.date = File.mtime("VERSION").strftime("%Y-%m-%d")
|
|
7
|
+
|
|
8
|
+
s.authors = ["epitron"]
|
|
9
|
+
s.summary = "Non-Standard Library"
|
|
10
|
+
s.description = "Extra classes and enhancements to make the Ruby environment nicer."
|
|
11
|
+
s.email = "chris@ill-logic.com"
|
|
12
|
+
s.extra_rdoc_files = ["LICENSE"]
|
|
13
|
+
|
|
14
|
+
s.files = `git ls-files`.lines.map(&:strip)
|
|
15
|
+
s.homepage = "http://github.com/epitron/nsl"
|
|
16
|
+
s.licenses = ["WTFPL"]
|
|
17
|
+
s.require_paths = ["lib"]
|
|
18
|
+
|
|
19
|
+
if s.respond_to? :specification_version
|
|
20
|
+
s.specification_version = 3
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
s.add_development_dependency "rspec", "~> 2"
|
|
24
|
+
#s.add_dependency "mechanize", "~> 1.0.0"
|
|
25
|
+
#s.add_dependency "sqlite3-ruby", ">= 0"
|
|
26
|
+
end
|
|
27
|
+
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
data/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
2
|
+
Version 2, December 2004
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2004 Sam Hocevar
|
|
5
|
+
14 rue de Plaisance, 75014 Paris, France
|
|
6
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
|
7
|
+
copies of this license document, and changing it is allowed as long
|
|
8
|
+
as the name is changed.
|
|
9
|
+
|
|
10
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
11
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
12
|
+
|
|
13
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
gem_name = "nsl"
|
|
2
|
+
gem_version = File.read("VERSION").strip
|
|
3
|
+
|
|
4
|
+
task :build do
|
|
5
|
+
system "gem build .gemspec"
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
task :release => :build do
|
|
9
|
+
system "gem push #{gem_name}-#{gem_version}.gem"
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
task :install => :build do
|
|
13
|
+
system "gem install #{gem_name}-#{gem_version}.gem"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
task :pry do
|
|
17
|
+
system "pry --gem"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
task :spec do
|
|
21
|
+
cmd = %w[rspec -fd -c spec]
|
|
22
|
+
|
|
23
|
+
if system *%w[which rescue]
|
|
24
|
+
system *(["rescue"]+cmd)
|
|
25
|
+
else
|
|
26
|
+
system *cmd
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
task :default => :spec
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.1
|
data/lib/nsl.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nsl
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- epitron
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-12-27 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rspec
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2'
|
|
27
|
+
description: Extra classes and enhancements to make the Ruby environment nicer.
|
|
28
|
+
email: chris@ill-logic.com
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files:
|
|
32
|
+
- LICENSE
|
|
33
|
+
files:
|
|
34
|
+
- ".gemspec"
|
|
35
|
+
- ".gitignore"
|
|
36
|
+
- LICENSE
|
|
37
|
+
- Rakefile
|
|
38
|
+
- VERSION
|
|
39
|
+
- lib/nsl.rb
|
|
40
|
+
homepage: http://github.com/epitron/nsl
|
|
41
|
+
licenses:
|
|
42
|
+
- WTFPL
|
|
43
|
+
metadata: {}
|
|
44
|
+
post_install_message:
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements: []
|
|
59
|
+
rubyforge_project:
|
|
60
|
+
rubygems_version: 2.5.2
|
|
61
|
+
signing_key:
|
|
62
|
+
specification_version: 3
|
|
63
|
+
summary: Non-Standard Library
|
|
64
|
+
test_files: []
|