atomize 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b172c49e5bb4d20a9704165c9d55f8c5470b8b07aa4ad7963d9b5d274fe11692
4
- data.tar.gz: 86c7ad63b56582393398a5c892cfe990513ab1c78e381e27389af79cda7e022e
3
+ metadata.gz: d26575a6f3da463f73c70cfbe7b32d7422c29dd2214173c091e38b93179f7bc8
4
+ data.tar.gz: f525eacafcead58dfebc035eaff2083d6bfa183777f84d95f962028817fc66db
5
5
  SHA512:
6
- metadata.gz: 846f2baafa600931d31d8d24353dbf32fded776258186e0586f8ea84ba13082ae9315335ffa6aa41d10245a961f12643bc8230b0c0c1c273d1ec497fc097d4de
7
- data.tar.gz: a857280b0f203c4f6b0005963a874987304141c3b26fcef2630d49671d77bb6f26623153e98cab5e0a2a946be4b73c270b9b82a9dadda214b6b4328f77b782f7
6
+ metadata.gz: 8ed92909b81c6000dc24b9e7b9bdf7d48b26970c11b473b78f9ab2400a10aecac2f9d9dbaed3fe0ae32d356c4a26ea459066f094db6907b17cf1d97d4612c846
7
+ data.tar.gz: 4d591f80377f2eaa9a91bbba20678861cbe6bd6783085ce290c8e4a2a9cd457d901ef31da245b9d1885867a635aa4378e53d432718ce422765c82f07333535b8
data/README.md CHANGED
@@ -17,6 +17,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
17
17
  ## Usage
18
18
 
19
19
  to install the atome development framework, just type : 'atomize install' in you shell
20
+ If you want to install and run the app, just type type : 'atomize install run ' in you shell
20
21
  it will create a directory named 'atome' and also install the atome gem
21
22
  Then refer to https://github.com/atomecorp/atome to use or develop the framework
22
23
 
data/exe/atomize CHANGED
@@ -5,11 +5,26 @@ if ARGV.include?('install')
5
5
  %x(git clone https://github.com/atomecorp/atome.git )
6
6
  Dir.chdir('atome/vendor/assets/build/js/') do
7
7
  %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
8
+ Dir.chdir('../../../../test/test_app/build/') do
9
+
10
+ Dir.mkdir('js')
11
+
12
+ Dir.chdir('js/') do
13
+ %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
14
+ end
15
+ end
8
16
  Dir.chdir('../../../../') do
17
+ Dir.mkdir('thepoil')
9
18
  `bundle update; bundle install`
10
19
  `gem build atome.gemspec`
11
20
  `gem install atome`
12
- # ` rake test`
21
+
22
+ end
23
+ end
24
+ if ARGV.include?('run')
25
+ Dir.chdir('atome/') do
26
+ puts "the path for rake is" +`pwd`
27
+ `rake test`
13
28
  end
14
29
  end
15
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Atomize
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Eric Godard