easy-resources-adam 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0da58167929a2f589f94a8fa30759dce72ecfcef5f224d42b1a5c4a1a479dbc
4
- data.tar.gz: ba5d795d19616ff6228e6d92826f537ac1f37528e69f3bb9c7c57afde90df044
3
+ metadata.gz: f6fc0e96996e28bb32a84655e9cc695254e5d95ef7c5ce266aedb04eb59938cb
4
+ data.tar.gz: c62385cf668beb832a9f3b50aa333764bf66070d89f306c49910c4465465360d
5
5
  SHA512:
6
- metadata.gz: '019fc8c056f73a289955c11123f7741003938d3540f4d1a045d9e4be182ac40586fca2a35fac9a90657ce27505891420542e6daad662ec2c620ae07b084e023f'
7
- data.tar.gz: 2697289ec72d1bc438b3c271f7bb4434eda444cf2a16930685291f9b492323c68246c49704f41064891960e020839fc699c64814e1d5d9c7bd7a7be43065d700
6
+ metadata.gz: ada10d48136901ecd8823c8df4e943f5f02041d07e429f33fb3971fbb0c99c66c78430ab4959fb788fc9837482593ee08a7624ea0faf66990913eea092759d5b
7
+ data.tar.gz: 5a573eb8adddca4ce3559fbab3e3b0c7276d7bdbc769a0cbbaa5abfdcaf4e8c8e61f376556e9f2f8b101f59305d87ed1a4e2a5caf2927b0cbe4918cb52bf843d
@@ -1,11 +1,14 @@
1
1
  require "easy/resources"
2
-
3
2
  require "easy/resources/adam/railtie"
4
3
 
5
4
  module Easy
6
5
  module Resources
7
6
  module Adam
8
7
 
8
+ autoload :Server, "easy/resources/adam/server"
9
+ autoload :TaskExecution, "easy/resources/adam/task_execution"
10
+ autoload :WebApplication, "easy/resources/adam/web_application"
11
+
9
12
  end
10
13
  end
11
14
  end
@@ -0,0 +1,13 @@
1
+ module Easy
2
+ module Resources
3
+ module Adam
4
+ class Server < ::Easy::Resource
5
+
6
+ def self.find_me_by_name(name)
7
+ first(params: { w: "me|=|1,name|=|#{name}" })
8
+ end
9
+
10
+ end
11
+ end
12
+ end
13
+ end
@@ -1,10 +1,7 @@
1
1
  module Easy
2
2
  module Resources
3
3
  module Adam
4
- class Task < ::Easy::Resource
5
-
6
- def perform
7
- end
4
+ class TaskExecution < ::Easy::Resource
8
5
 
9
6
  end
10
7
  end
@@ -1,7 +1,7 @@
1
1
  module Easy
2
2
  module Resources
3
3
  module Adam
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
6
6
  end
7
7
  end
@@ -0,0 +1,9 @@
1
+ module Easy
2
+ module Resources
3
+ module Adam
4
+ class WebApplication < ::Easy::Resource
5
+
6
+ end
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy-resources-adam
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - petr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-11 00:00:00.000000000 Z
11
+ date: 2019-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: railties
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -50,8 +50,10 @@ files:
50
50
  - Rakefile
51
51
  - lib/easy/resources/adam.rb
52
52
  - lib/easy/resources/adam/railtie.rb
53
- - lib/easy/resources/adam/task.rb
53
+ - lib/easy/resources/adam/server.rb
54
+ - lib/easy/resources/adam/task_execution.rb
54
55
  - lib/easy/resources/adam/version.rb
56
+ - lib/easy/resources/adam/web_application.rb
55
57
  homepage: https://www.easysoftware.com
56
58
  licenses:
57
59
  - MIT