syclink 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/syclink.rb +1 -0
- data/lib/syclink/version.rb +1 -1
- data/setup.md +13 -2
- data/syclink.gemspec +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e589b7afc92a5b81224d34df04f9aa8de84d4e66
|
4
|
+
data.tar.gz: e50dbfae41eef5d476fb3e9c95b8505401d49c4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cdd7ddbcd51e14acacb585bdbfe4f6760c970d63de348200194d5fd222ebe78e6a816d59bdea44db064119ee879f0354b7656099be74f3bfdaedf0a4f78e548
|
7
|
+
data.tar.gz: 4fd0b2f5036a5884a8cb8fdd3991d6058c044e04b828957aa89b43ea594c68bdd3823fa31a65d9b4a15f98756e6fc22a99e9f210bec092ae3e3c21a63205586c
|
data/.gitignore
CHANGED
data/lib/syclink.rb
CHANGED
data/lib/syclink/version.rb
CHANGED
data/setup.md
CHANGED
@@ -82,11 +82,22 @@ to CSS with
|
|
82
82
|
|
83
83
|
Distribution
|
84
84
|
============
|
85
|
-
To distribute the application we need the
|
85
|
+
To distribute the application we need the gemspec and a Rakefile with the
|
86
86
|
'rubygems/package\_task'.
|
87
87
|
|
88
88
|
From the command line we call
|
89
89
|
|
90
90
|
$ rake package
|
91
91
|
|
92
|
-
This will create a gem package we can distribute
|
92
|
+
This will create a gem package we can distribute with
|
93
|
+
|
94
|
+
$ gem push pkg/syclink-0.0.1.gem
|
95
|
+
Enter your RubyGems.org credentials.
|
96
|
+
Don't have an account yet? Create one at https://rubygems.org/sign_up
|
97
|
+
Email: pierre@sugaryourcoffee.de
|
98
|
+
Password:
|
99
|
+
|
100
|
+
Signed in.
|
101
|
+
Pushing gem to https://rubygems.org...
|
102
|
+
Successfully registered gem: syclink (0.0.1)
|
103
|
+
|
data/syclink.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
# Ensure we require the local version and not one we might have installed
|
1
|
+
# Ensure we require the local version and not one we might have installed
|
2
|
+
# already
|
2
3
|
require File.join([File.dirname(__FILE__),'lib','syclink','version.rb'])
|
3
4
|
spec = Gem::Specification.new do |s|
|
4
5
|
s.name = 'syclink'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: syclink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Sugar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|