ric 0.12.2 → 0.13.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Makefile +10 -1
- data/VERSION +1 -1
- data/bin/septober +14 -3
- data/ric.gemspec +3 -3
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad9acea383ac1ae2f378c6ad093184be95b6e9468f3b24bb476ce63e372cc6c2
|
|
4
|
+
data.tar.gz: 32b2325887dbfc5b1fff5ebe42677b4a5847c13f904adba930888957ecf4135d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45c3ad662f4dd7423ff791fc5b1c35648434388375cabce9415b0f0abfef908a70df0d41a04f8dc0514a9bb522aada8f0f333cec85f201a07d2cdc34b6112beb
|
|
7
|
+
data.tar.gz: 82ef445fcc468163ad8ce7ca1a0edbbf6274ea34ecff1265e782d090ebbb355ef77adbe444e1c7e08487335a2ef08c0a3d3cf0e9880826ed3ed46729bb5ca577
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/Makefile
CHANGED
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
|
|
2
2
|
# Makefile before I learn how to use a Rakefile appropriately :P
|
|
3
|
+
|
|
4
|
+
VERSION = $(shell cat VERSION)
|
|
5
|
+
|
|
3
6
|
install:
|
|
4
7
|
bundle install --path vendor/bundle
|
|
5
8
|
|
|
6
|
-
|
|
9
|
+
build: install
|
|
7
10
|
#sbin/rake-deploy1.sh
|
|
8
11
|
bundle exec rake build
|
|
9
12
|
bundle exec rake release
|
|
10
13
|
echo Correctly built and deployed version 1
|
|
11
14
|
|
|
15
|
+
push-to-rubygems:
|
|
16
|
+
# requires both private key and user/password so only for the maintainer..
|
|
17
|
+
bundle exec rake build
|
|
18
|
+
rake gem
|
|
19
|
+
gem push pkg/ric-$(VERSION).gem
|
|
20
|
+
|
|
12
21
|
clean:
|
|
13
22
|
rm -rf pkg/ doc/
|
|
14
23
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.13.0
|
data/bin/septober
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
+
#print "[DEB] ruby version: #{RUBY_VERSION}\n"
|
|
4
|
+
|
|
5
|
+
# TESTED with ruby 2.5.1
|
|
6
|
+
#if Integer(RUBY_VERSION.split('.')[0]) > 1 ; then
|
|
7
|
+
# print "Ruby to advanced for this shogram(version: #{RUBY_VERSION}): aborting"
|
|
8
|
+
# #fatal 42 "ruby too new"
|
|
9
|
+
#end
|
|
10
|
+
|
|
11
|
+
#exit 1
|
|
12
|
+
|
|
3
13
|
=begin
|
|
4
14
|
############################################################
|
|
5
15
|
@author: Riccardo Carlesso
|
|
@@ -20,7 +30,7 @@
|
|
|
20
30
|
###########################################################
|
|
21
31
|
=end
|
|
22
32
|
|
|
23
|
-
|
|
33
|
+
$PROG_VER = '1.0.1'
|
|
24
34
|
|
|
25
35
|
=begin
|
|
26
36
|
@history:
|
|
@@ -40,6 +50,7 @@
|
|
|
40
50
|
require 'ric'
|
|
41
51
|
#require 'active_resource' # not needed anymore, after ric gem v0.12.0
|
|
42
52
|
require 'socket'
|
|
53
|
+
require 'activeresource'
|
|
43
54
|
|
|
44
55
|
include RubyClasses::Array
|
|
45
56
|
|
|
@@ -100,7 +111,7 @@ Usage: #{File.basename $0} [options] [add|list|done|del] [args]
|
|
|
100
111
|
end
|
|
101
112
|
|
|
102
113
|
#################################################################################################################################################
|
|
103
|
-
|
|
114
|
+
class RemoteTodo < ActiveResource::Base
|
|
104
115
|
# With a singleton u can define the accessors of the class (attr accessor for self!)
|
|
105
116
|
#class << self
|
|
106
117
|
# attr_accessor :description # = '-'
|
|
@@ -117,7 +128,7 @@ riccardo heroku: &DEVEL_LOCAL
|
|
|
117
128
|
password: guest
|
|
118
129
|
description: My Rails 3 development (guest//guest shuld work for real This is NOT a random thing)
|
|
119
130
|
RiccardoHeroku: &RICCARDO_HEROKU
|
|
120
|
-
site: "http://septober.
|
|
131
|
+
site: "http://septober.palladi.us/api/"
|
|
121
132
|
user: YOURUSERNAME
|
|
122
133
|
password: YOURPASSWORD
|
|
123
134
|
description: this server exists but is REALLY slow..
|
data/ric.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: ric 0.
|
|
2
|
+
# stub: ric 0.13.0 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "ric".freeze
|
|
6
|
-
s.version = "0.
|
|
6
|
+
s.version = "0.13.0"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
10
10
|
s.authors = ["Riccardo Carlesso".freeze]
|
|
11
11
|
s.cert_chain = ["/home/riccardo/git/gic/private/rusko@palladius.it/gem-public_cert.pem".freeze]
|
|
12
|
-
s.date = "2019-05-
|
|
12
|
+
s.date = "2019-05-11"
|
|
13
13
|
s.description = "My first gem with various utilities (colors and tests now). \n My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence\n with hence!)".freeze
|
|
14
14
|
s.email = "['p','ll','diusbonton].join('a') @ gmail.com".freeze
|
|
15
15
|
s.executables = ["itunes.rb".freeze, "ric".freeze, "riclib-test".freeze, "septober".freeze, "xcopy".freeze]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ric
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Riccardo Carlesso
|
|
@@ -32,7 +32,7 @@ cert_chain:
|
|
|
32
32
|
P5uQ5px4pPuY2d0qLqYvN1r2E8ja5UkVanqfwvLh+nl8k+bSdJSYHrYTUDaigjJ7
|
|
33
33
|
JLyb9qTxSiYD9QnlmHKA
|
|
34
34
|
-----END CERTIFICATE-----
|
|
35
|
-
date: 2019-05-
|
|
35
|
+
date: 2019-05-11 00:00:00.000000000 Z
|
|
36
36
|
dependencies:
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
38
38
|
name: activeresource
|
metadata.gz.sig
CHANGED
|
Binary file
|