app_rail-steps 0.2.13 → 0.2.14

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: 37eaa53b308c4e7a4b06bc73be9409006f6f3a354e1075c1f8c89ec9ff631d9a
4
- data.tar.gz: b8f9f5055a8e39f3e45588ac01074f2d6cb8bc5b194ebf12ba062070d4f7b9de
3
+ metadata.gz: 9d445a5e54dee368af8a3e60529e8fbdfb596570e3fa2f22105f49d4904f2e0d
4
+ data.tar.gz: 2aa02c02a2c8ad24a8341b837ec651c9c94d7249167b18d3cbf5a9b3990c718b
5
5
  SHA512:
6
- metadata.gz: 3613ddaaab8d7329e9ebb44528447e4626c03a7a7b03b522243a62f804e430b689b5c2dffc0da5db388844d5758e5048bbae3790037fa0b23d3fb18701f0cad4
7
- data.tar.gz: 4f85744e064a06f3ddc23211c7c6b795c2c92154e6afa7c67db250ff3de4c773b866860dc8fab5e942892b09fc2fccb826cf511031fa6c096347e2fb3655fbdd
6
+ metadata.gz: 10b575a5c9bb3a0bb688593ebfe25188d32922f8ead46801360ac106df1c39a60bb479a1fa8bcb162299b40839f619e9b1c1f39f0897c9899a791f9bd638d51c
7
+ data.tar.gz: 3c54c9bd30824d31d81b8471316cadfcc67135b6f575414644f02bdfa88bf297e13843b13e626b964d7f19faf237fc4b74d90d0df8cc9300d2628620f564ee21
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_rail-steps (0.2.13)
4
+ app_rail-steps (0.2.14)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -3,7 +3,7 @@
3
3
  module AppRail
4
4
  module Steps
5
5
  module BackgroundLocation
6
- module Regions
6
+ module Region
7
7
  def ar_background_location_region(id:, latitude:, longitude:, radius: 100, event: :entryAndExit)
8
8
  {
9
9
  id: id.to_s,
@@ -8,6 +8,7 @@ require_relative "maps/map"
8
8
  require_relative "styled_content/grid"
9
9
  require_relative "styled_content/stack"
10
10
  require_relative "charts/dashboard"
11
+ require_relative "background_location/region"
11
12
 
12
13
  module AppRail
13
14
  module Steps
@@ -20,6 +21,7 @@ module AppRail
20
21
  include Steps::StyledContent::Grid
21
22
  include Steps::StyledContent::Stack
22
23
  include Steps::Charts::Dashboard
24
+ include Steps::BackgroundLocation::Region
23
25
 
24
26
  def camelcase_converter(string, first_letter: :upper)
25
27
  string = string.split("_").map(&:capitalize).join
@@ -2,6 +2,6 @@
2
2
 
3
3
  module AppRail
4
4
  module Steps
5
- VERSION = "0.2.13"
5
+ VERSION = "0.2.14"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_rail-steps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.13
4
+ version: 0.2.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brooke-Smith
@@ -27,7 +27,7 @@ files:
27
27
  - Rakefile
28
28
  - app_rail-steps.gemspec
29
29
  - lib/app_rail/steps.rb
30
- - lib/app_rail/steps/background_location/regions.rb
30
+ - lib/app_rail/steps/background_location/region.rb
31
31
  - lib/app_rail/steps/charts/dashboard.rb
32
32
  - lib/app_rail/steps/core/list.rb
33
33
  - lib/app_rail/steps/core/stack.rb