snuggsi 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.npmignore +7 -0
- data/README.md +16 -20
- data/index.js +0 -0
- data/lib/snuggsi/version.rb +1 -1
- data/package.json +29 -0
- data/snuggsi-0.1.0.gem +0 -0
- metadata +5 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94f017eec2da0f5de4c6aeb1161fb85af416a033
|
4
|
+
data.tar.gz: 2b3bdeb8e44863fdbb85079aa53c2eb725a1e238
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7dd38beb58502c7d173928c81880b4f2d2f8726e0196af9c8dc2d08443a41ef7c03088ac6a0455137d89bd47c39817e23695a9e918241b3649ae61283bcdd3bb
|
7
|
+
data.tar.gz: bdc8c2ec2e46d9b53d5ef65161215bb23a3500c60f862b6f3f25c3baa4d409e61b4e07f6288addce451c3eeb4c1bc3a4c4b12e999b2bbe870e7bcab916c09c60
|
data/.npmignore
ADDED
data/README.md
CHANGED
@@ -1,34 +1,30 @@
|
|
1
1
|
# Snuggsi
|
2
|
-
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/snuggsi`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
2
|
+
Sane Client Components
|
6
3
|
|
7
4
|
## Installation
|
8
5
|
|
9
6
|
Add this line to your application's Gemfile:
|
10
7
|
|
11
|
-
|
12
|
-
|
8
|
+
### Node
|
9
|
+
```bash
|
10
|
+
$ npm install snuggsi
|
13
11
|
```
|
14
12
|
|
15
|
-
|
13
|
+
### Ruby
|
14
|
+
Add this to your gemfile
|
15
|
+
```bash
|
16
|
+
gem snuggsi
|
17
|
+
```
|
16
18
|
|
17
|
-
|
19
|
+
And then execute:
|
20
|
+
```bash
|
21
|
+
$ bundle
|
22
|
+
```
|
18
23
|
|
19
24
|
Or install it yourself as:
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
25
|
+
```bash
|
26
|
+
$ gem install snuggsi
|
27
|
+
```
|
32
28
|
|
33
29
|
## Contributing
|
34
30
|
|
data/index.js
ADDED
File without changes
|
data/lib/snuggsi/version.rb
CHANGED
data/package.json
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"name": "snuggsi",
|
3
|
+
"version": "0.1.1",
|
4
|
+
"description": "Sane client components",
|
5
|
+
"main": "index.js",
|
6
|
+
"directories": {
|
7
|
+
"test": "test"
|
8
|
+
},
|
9
|
+
"scripts": {
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
11
|
+
},
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "git+ssh://git@github.com/snuggs/snuggsi.git"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"web",
|
18
|
+
"components",
|
19
|
+
"resource",
|
20
|
+
"routing",
|
21
|
+
"templates"
|
22
|
+
],
|
23
|
+
"author": "Snuggsi",
|
24
|
+
"license": "MIT",
|
25
|
+
"bugs": {
|
26
|
+
"url": "https://github.com/snuggs/snuggsi/issues"
|
27
|
+
},
|
28
|
+
"homepage": "https://github.com/snuggs/snuggsi#readme"
|
29
|
+
}
|
data/snuggsi-0.1.0.gem
ADDED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snuggsi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Snuggs
|
@@ -46,6 +46,7 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- .gitignore
|
49
|
+
- .npmignore
|
49
50
|
- .travis.yml
|
50
51
|
- Gemfile
|
51
52
|
- LICENSE.txt
|
@@ -53,8 +54,11 @@ files:
|
|
53
54
|
- Rakefile
|
54
55
|
- bin/console
|
55
56
|
- bin/setup
|
57
|
+
- index.js
|
56
58
|
- lib/snuggsi.rb
|
57
59
|
- lib/snuggsi/version.rb
|
60
|
+
- package.json
|
61
|
+
- snuggsi-0.1.0.gem
|
58
62
|
- snuggsi.gemspec
|
59
63
|
homepage: http://github.com/snuggs/snuggsi
|
60
64
|
licenses:
|